File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ def test_unknown(self):
6464 json = {},
6565 )
6666
67- ctx = Context (Client ("http://connect.example" ))
67+ ctx = Context (Client ("http://connect.example" , "12345" ))
6868
6969 assert ctx .version is None
7070
@@ -75,7 +75,7 @@ def test_known(self):
7575 json = {"version" : "2024.09.24" },
7676 )
7777
78- ctx = Context (Client ("http://connect.example" ))
78+ ctx = Context (Client ("http://connect.example" , "12345" ))
7979
8080 assert ctx .version == "2024.09.24"
8181
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def test_owner_guid(self):
3434class TestGroupMembers :
3535 @classmethod
3636 def setup_class (cls ):
37- cls .client = Client ("https://connect.example" )
37+ cls .client = Client ("https://connect.example" , "12345" )
3838 guid = "6f300623-1e0c-48e6-a473-ddf630c0c0c3"
3939 fake_item = load_mock_dict (f"v1/groups/{ guid } .json" )
4040 ctx = Context (cls .client )
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ def test_groups(self):
161161 json = load_mock_dict (f"v1/groups/{ guid } /members.json" ),
162162 )
163163
164- client = Client ("https://connect.example/" )
164+ client = Client ("https://connect.example/" , "12345" )
165165 users = client .users .find ()
166166 assert len (users ) == 2 + 2
167167
You can’t perform that action at this time.
0 commit comments