diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-26 22:59:05 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-09-27 01:34:08 -0400 |
commit | 5fa0fd3b473f792bd7333cf6ae6e2f4c851b6108 (patch) | |
tree | 97876fd8d41d25d85c123192ce7c68c5cc3e471e /unittests | |
parent | 941b8a6dbcd538e3313fad1be45290b59f92df91 (diff) | |
download | meson-5fa0fd3b473f792bd7333cf6ae6e2f4c851b6108.zip meson-5fa0fd3b473f792bd7333cf6ae6e2f4c851b6108.tar.gz meson-5fa0fd3b473f792bd7333cf6ae6e2f4c851b6108.tar.bz2 |
fix test case instances where undefined message(true) occurred
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/allplatformstests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index 93a2e49..7edb96e 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -2378,7 +2378,7 @@ class AllPlatformTests(BasePlatformTests): self.assertRegex(out, 'opt2 val2') self.assertRegex(out, 'opt3 val3') self.assertRegex(out, 'opt4 default4') - self.assertRegex(out, 'sub1:werror True') + self.assertRegex(out, 'sub1:werror true') self.build() self.run_tests() @@ -2392,7 +2392,7 @@ class AllPlatformTests(BasePlatformTests): self.assertRegex(out, 'opt2 val2') self.assertRegex(out, 'opt3 val3') self.assertRegex(out, 'opt4 val4') - self.assertRegex(out, 'sub1:werror True') + self.assertRegex(out, 'sub1:werror true') self.assertTrue(Path(self.builddir, '.gitignore').exists()) self.build() self.run_tests() |