diff options
Diffstat (limited to 'test/stream/meson.build')
-rw-r--r-- | test/stream/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/stream/meson.build b/test/stream/meson.build index 89f51c18..3a97868b 100644 --- a/test/stream/meson.build +++ b/test/stream/meson.build @@ -5,10 +5,10 @@ stream_tests = [ ['stream_formats', 'stream_formats.cpp'], ] -foreach t : stream_tests - exe = executable(t[0], t[1], +foreach test : stream_tests + exe = executable(test[0], test[1], dependencies : libcamera_public, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite: 'stream') + test(test[0], exe, suite: 'stream') endforeach |