Skip to content

Commit

Permalink
Fix another value/index test issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Nov 21, 2024
1 parent c423af7 commit 8c1273e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glue_ar/qt/tests/test_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_widgets_for_property(self):
assert isinstance(label, QLabel)
assert label.text() == "Float CB:"
assert isinstance(slider, QSlider)
assert slider.value() == 70
assert slider.value() == 69 # Another value -> index thing (see above comment)
assert isinstance(value_label, QLabel)
assert value_label.text() == "0.7"

Expand Down

0 comments on commit 8c1273e

Please sign in to comment.