From cb36843863e098752ce77965226fd864c6134a2a Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 4 Nov 2016 14:06:38 +0530 Subject: [PATCH] failing tests: required : true is true implicitly We need to test that the not-required then required case also works when required is True implicitly. --- .../34 dependency not-required then required/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test cases/failing/34 dependency not-required then required/meson.build b/test cases/failing/34 dependency not-required then required/meson.build index f33c41c06..1796699e4 100644 --- a/test cases/failing/34 dependency not-required then required/meson.build +++ b/test cases/failing/34 dependency not-required then required/meson.build @@ -1,4 +1,4 @@ project('dep-test', 'c', version : '1.0') foo_dep = dependency('foo-bar-xyz-12.3', required : false) -bar_dep = dependency('foo-bar-xyz-12.3', required : true) +bar_dep = dependency('foo-bar-xyz-12.3')