diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-10-18 12:50:20 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-12-20 13:50:34 +0100 |
commit | 35171b3c3f850a9136e48d12ead389ee80842268 (patch) | |
tree | af3aaf34027fe82e311c5f46d8fbe7c710ed3116 /src/supplicant/tests | |
parent | b00e004890b9c39fec4fe543bb95fdc263e774bc (diff) | |
download | NetworkManager-35171b3c3f850a9136e48d12ead389ee80842268.tar.gz |
build: meson: Add trailing commas
Add missing trailing commas that avoids getting noise when another
file/parameter is added and eases reviewing changes[0].
[0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
Diffstat (limited to 'src/supplicant/tests')
-rw-r--r-- | src/supplicant/tests/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supplicant/tests/meson.build b/src/supplicant/tests/meson.build index 5e4cbdbef5..7cc9d6af4a 100644 --- a/src/supplicant/tests/meson.build +++ b/src/supplicant/tests/meson.build @@ -9,5 +9,5 @@ exe = executable( test( 'supplicant/' + test_unit, test_script, - args: test_args + [exe.full_path()] + args: test_args + [exe.full_path()], ) |