Skip to content

Commit d711438

Browse files
committed
chore: fix formatting
1 parent 3875f56 commit d711438

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

examples/testing/test_app.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,17 @@ def test_multiple_conditions(self):
133133
)
134134

135135
# Both conditions must match
136-
assert replane.with_context({"plan": "premium", "region": "US"}).configs["special-offer"] is True
137-
assert replane.with_context({"plan": "premium", "region": "EU"}).configs["special-offer"] is False
138-
assert replane.with_context({"plan": "free", "region": "US"}).configs["special-offer"] is False
136+
assert (
137+
replane.with_context({"plan": "premium", "region": "US"}).configs["special-offer"]
138+
is True
139+
)
140+
assert (
141+
replane.with_context({"plan": "premium", "region": "EU"}).configs["special-offer"]
142+
is False
143+
)
144+
assert (
145+
replane.with_context({"plan": "free", "region": "US"}).configs["special-offer"] is False
146+
)
139147

140148

141149
class TestApplicationCode:

0 commit comments

Comments
 (0)