Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
reverted test to correct for new background correction
Browse files Browse the repository at this point in the history
  • Loading branch information
ggoneiESS committed Nov 30, 2023
1 parent 8e2a1c6 commit 5679574
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ def test_GIVEN_invalid_WHEN_validating_line_edit_THEN_line_edit_turns_red():
def test_GIVEN_valid_WHEN_validating_line_edit_THEN_line_edit_turns_white():
line_edit = DummyLineEdit()
validate_line_edit(line_edit, True)
assert (
"background-color: "
+ ("#333333" if os.uname().sysname == "Darwin" else "#FFFFFF")
in line_edit.stylesheet
)
assert ("background-color: #FFFFFF" in line_edit.stylesheet)


def test_GIVEN_valid_WHEN_validating_line_edit_with_tooltip_THEN_line_edit_tooltip_is_changed():
Expand Down

0 comments on commit 5679574

Please sign in to comment.