File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
141149class TestApplicationCode :
You can’t perform that action at this time.
0 commit comments