diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2025-02-28 01:25:25 +0200 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-02-27 23:20:17 -0800 |
| commit | e4de716d504a56cd9f87683334facc82aea3d200 (patch) | |
| tree | 315cc27fe9a770241dbeac2a2413fdd3c2b075f2 /unittests/optiontests.py | |
| parent | 8546e408c67a783b5b04063834eff55f3e53eaf2 (diff) | |
| download | meson-e4de716d504a56cd9f87683334facc82aea3d200.tar.gz | |
Actually fix base option default values.
Diffstat (limited to 'unittests/optiontests.py')
| -rw-r--r-- | unittests/optiontests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/optiontests.py b/unittests/optiontests.py index c733f15d2..28abca110 100644 --- a/unittests/optiontests.py +++ b/unittests/optiontests.py @@ -207,5 +207,5 @@ class OptionTests(unittest.TestCase): def test_b_default(self): optstore = OptionStore(False) - _, value = optstore.get_default_for_b_option('b_vscrt') + value = optstore.get_default_for_b_option('b_vscrt') self.assertEqual(value, 'from_buildtype') |
