Skip to content

Commit 4ccf6b8

Browse files
committed
lint issues
1 parent b430f69 commit 4ccf6b8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/acceptance/test_toggle.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ def test_get_boolean_returns_targeted_value_when_user_id_matches(
275275
)
276276

277277
# May fail due to backend caching issue (see note above)
278-
assert result_with_match is True, "should return targeted value for matching user"
279-
assert result_without_match is False, "should return default value for non-matching user"
278+
assert result_with_match is True, "should return targeted value for match"
279+
assert result_without_match is False, "should return default for non-match"
280280
finally:
281281
admin.delete_toggle(toggle_key)
282282

@@ -322,8 +322,8 @@ def test_get_string_returns_targeted_value_based_on_custom_attribute(
322322
)
323323

324324
# May fail due to backend caching issue (see note above)
325-
assert result_premium == "the-premium-feature-value", "should return targeted value for premium plan"
326-
assert result_free == "the-default-feature-value", "should return default value for free plan"
325+
assert result_premium == "the-premium-feature-value"
326+
assert result_free == "the-default-feature-value"
327327
finally:
328328
admin.delete_toggle(toggle_key)
329329

0 commit comments

Comments
 (0)