From 9295aedb8db2ba94ce01f874dad67185001fe035 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 7 Oct 2020 10:45:33 -0400 Subject: [PATCH] Tests: py.dependency() now has required:true by default It used to ignore the required argument and got fixed to be consistent with dependency() function. --- test cases/unit/39 python extmodule/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test cases/unit/39 python extmodule/meson.build b/test cases/unit/39 python extmodule/meson.build index eb00a6ae3..5b443944b 100644 --- a/test cases/unit/39 python extmodule/meson.build +++ b/test cases/unit/39 python extmodule/meson.build @@ -6,7 +6,7 @@ py_mod = import('python') py = py_mod.find_installation(get_option('python'), required : false) if py.found() - py_dep = py.dependency() + py_dep = py.dependency(required : false) if py_dep.found() subdir('ext')