diff options
Diffstat (limited to 'unittests/datatests.py')
-rw-r--r-- | unittests/datatests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/datatests.py b/unittests/datatests.py index 6f4f421..b82ff1c 100644 --- a/unittests/datatests.py +++ b/unittests/datatests.py @@ -145,8 +145,8 @@ class DataTests(unittest.TestCase): found_entries |= options self.assertEqual(found_entries, { - *[str(k) for k in mesonbuild.coredata.BUILTIN_OPTIONS], - *[str(k) for k in mesonbuild.coredata.BUILTIN_OPTIONS_PER_MACHINE], + *(str(k) for k in mesonbuild.coredata.BUILTIN_OPTIONS), + *(str(k) for k in mesonbuild.coredata.BUILTIN_OPTIONS_PER_MACHINE), }) # Check that `buildtype` table inside `Core options` matches how |