diff options
-rw-r--r-- | unittests/allplatformstests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index a57ca0c..6405360 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -4693,7 +4693,7 @@ class AllPlatformTests(BasePlatformTests): cmd = self.meson_command + ['--internal', 'test_loaded_modules', '--unpickle', str(p)] p = subprocess.run(cmd, stdout=subprocess.PIPE) all_modules = json.loads(p.stdout.splitlines()[0]) - meson_modules = [m for m in all_modules if 'meson' in m] + meson_modules = [m for m in all_modules if m.startswith('mesonbuild')] expected_meson_modules = [ 'mesonbuild', 'mesonbuild._pathlib', |