@@ -17,7 +17,7 @@ def username():
1717
1818@pytest .fixture ()
1919def base_url (username ):
20- return get_api_endpoint (). format ( username = username , flavor = "files" )
20+ return get_api_endpoint (username = username , flavor = "files" )
2121
2222
2323@pytest .fixture ()
@@ -295,7 +295,7 @@ def test_sharing_post_raises_exception_when_path_not_provided(
295295 "provided path is not valid" # or similar
296296 )
297297 assert str (e .value ) == expected_error_msg
298-
298+
299299
300300def test_sharing_get_returns_sharing_url_when_path_is_shared (
301301 api_token , api_responses , base_url , home_dir_path , username
@@ -325,7 +325,7 @@ def test_sharing_get_returns_empty_string_when_path_not_shared(
325325 api_responses .add (method = responses .GET , url = url , status = 404 )
326326
327327 assert Files ().sharing_get (valid_path ) == ""
328-
328+
329329
330330def test_returns_204_on_sucessful_unshare (
331331 api_token , api_responses , base_url , home_dir_path , username
@@ -336,7 +336,7 @@ def test_returns_204_on_sucessful_unshare(
336336 api_responses .add (method = responses .DELETE , url = url , status = 204 )
337337
338338 assert Files ().sharing_delete (valid_path ) == 204
339-
339+
340340
341341def test_returns_list_of_the_regular_files_and_subdirectories_of_a_directory (
342342 api_token , api_responses , base_url , default_home_dir_files , home_dir_path
0 commit comments