summaryrefslogtreecommitdiff
path: root/unittests/optiontests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2025-02-28 01:25:25 +0200
committerDylan Baker <dylan@pnwbakers.com>2025-02-27 23:20:17 -0800
commite4de716d504a56cd9f87683334facc82aea3d200 (patch)
tree315cc27fe9a770241dbeac2a2413fdd3c2b075f2 /unittests/optiontests.py
parent8546e408c67a783b5b04063834eff55f3e53eaf2 (diff)
downloadmeson-e4de716d504a56cd9f87683334facc82aea3d200.tar.gz
Actually fix base option default values.
Diffstat (limited to 'unittests/optiontests.py')
-rw-r--r--unittests/optiontests.py2
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')