aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-05-22 12:15:01 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-22 12:15:01 +0300
commit626c0a53193415d076936dee0ab4bc4c4c4eb4a4 (patch)
tree94c07baf15e86088e61dd0b9fb5a83d9d8f8aea1
parent07792c2d9d926b70be3d81b2c806648a281e34ec (diff)
downloadmeson-626c0a53193415d076936dee0ab4bc4c4c4eb4a4.zip
meson-626c0a53193415d076936dee0ab4bc4c4c4eb4a4.tar.gz
meson-626c0a53193415d076936dee0ab4bc4c4c4eb4a4.tar.bz2
Fix text used to validate test output.
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index f65eba3..519c36e 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -2526,7 +2526,7 @@ class AllPlatformTests(BasePlatformTests):
testdir = os.path.join(self.common_test_dir, '98 subproject subdir')
with self.assertRaises(subprocess.CalledProcessError) as cm:
self.init(testdir, extra_args=['--wrap-mode=nopromote'])
- self.assertIn('Dependency "subsub" not found', cm.exception.stdout)
+ self.assertIn('dependency subsub found: NO', cm.exception.stdout)
def test_force_fallback_for(self):
testdir = os.path.join(self.unit_test_dir, '31 forcefallback')