diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-07-06 10:23:36 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2023-07-07 11:39:19 +0300 |
commit | ca437b4a0cde5ec72a5eea709eb044264deb4f55 (patch) | |
tree | f32e5831f20d303e56b827b46842642cd4610546 /test | |
parent | adb1bbb748a12eb2427f2d19a46fae55d99b623a (diff) |
meson: Fix space around colon issues
The meson style, which libcamera follows, recommends a space before
colons in function parameters. Fix the style violations through the
project.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/gstreamer/meson.build | 2 | ||||
-rw-r--r-- | test/stream/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/gstreamer/meson.build b/test/gstreamer/meson.build index 0904ee0d..a5c003b6 100644 --- a/test/gstreamer/meson.build +++ b/test/gstreamer/meson.build @@ -9,7 +9,7 @@ gstreamer_tests = [ {'name': 'multi_stream_test', 'sources': ['gstreamer_multi_stream_test.cpp']}, {'name': 'device_provider_test', 'sources': ['gstreamer_device_provider_test.cpp']}, ] -gstreamer_dep = dependency('gstreamer-1.0', required: true) +gstreamer_dep = dependency('gstreamer-1.0', required : true) foreach test : gstreamer_tests exe = executable(test['name'], test['sources'], 'gstreamer_test.cpp', diff --git a/test/stream/meson.build b/test/stream/meson.build index a3b19bf5..dd77f2f7 100644 --- a/test/stream/meson.build +++ b/test/stream/meson.build @@ -10,5 +10,5 @@ foreach test : stream_tests dependencies : libcamera_public, link_with : test_libraries, include_directories : test_includes_internal) - test(test['name'], exe, suite: 'stream') + test(test['name'], exe, suite : 'stream') endforeach |