Skip to content

Commit 3cc7467

Browse files
Update the getOptionInfo test output (#112)
1 parent 76b1acf commit 3cc7467

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cvc5_pythonic_api/cvc5_pythonic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6337,7 +6337,7 @@ def getOptionInfo(self, name):
63376337
>>> s = Solver()
63386338
>>> s.setOption(incremental=False)
63396339
>>> s.getOptionInfo("incremental")
6340-
{'name': 'incremental', 'aliases': [], 'setByUser': True, 'type': <class 'bool'>, 'current': False, 'default': True}
6340+
{'name': 'incremental', 'aliases': [], 'setByUser': True, 'category': <OptionCategory.COMMON: 2>, 'type': <class 'bool'>, 'current': False, 'default': True}
63416341
"""
63426342
return self.solver.getOptionInfo(name)
63436343

0 commit comments

Comments
 (0)