Skip to content

Commit 8fd454a

Browse files
committed
chore: fix formatting
1 parent 4f0b9df commit 8fd454a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/test_testing.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ def test_multiple_conditions(self):
176176

177177
assert client.with_context({"plan": "free", "region": "us"}).configs["rate-limit"] == 100
178178
assert client.with_context({"plan": "premium", "region": "eu"}).configs["rate-limit"] == 100
179-
assert client.with_context({"plan": "premium", "region": "us"}).configs["rate-limit"] == 10000
179+
assert (
180+
client.with_context({"plan": "premium", "region": "us"}).configs["rate-limit"] == 10000
181+
)
180182

181183
def test_multiple_overrides_first_wins(self):
182184
client = InMemoryReplaneClient()
@@ -246,4 +248,3 @@ def test_creates_empty_client(self):
246248
def test_with_default_context(self):
247249
client = create_test_client({"x": 1}, context={"env": "test"})
248250
assert client._context == {"env": "test"}
249-

0 commit comments

Comments
 (0)