File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313
1414from openfga_sdk .client import ClientConfiguration
1515from openfga_sdk .client .models .check_request import ClientCheckRequest
16+ from openfga_sdk .client .models .list_objects_request import ClientListObjectsRequest
1617from openfga_sdk .client .models .tuple import ClientTuple
1718from openfga_sdk .client .models .write_request import ClientWriteRequest
1819from openfga_sdk .sync import OpenFgaClient , rest
@@ -294,7 +295,6 @@ def test_sync_streamed_list_objects_with_custom_headers(self, mock_streamed_list
294295 "headers" : custom_headers
295296 }
296297
297- from openfga_sdk .client .models .list_objects_request import ClientListObjectsRequest
298298 body = ClientListObjectsRequest (
299299 user = "user:test-user" ,
300300 relation = "viewer" ,
@@ -308,7 +308,7 @@ def test_sync_streamed_list_objects_with_custom_headers(self, mock_streamed_list
308308 self .assertEqual (len (results ), 2 )
309309 self .assertEqual (results [0 ].object , "document:1" )
310310 self .assertEqual (results [1 ].object , "document:2" )
311-
311+
312312 # Verify the API was called with the expected parameters including headers
313313 mock_streamed_list_objects .assert_called_once ()
314314 call_kwargs = mock_streamed_list_objects .call_args .kwargs
You can’t perform that action at this time.
0 commit comments