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