File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ def test_get_user_config_dir():
21
21
# But on Windows we need to set APPDATA instead, and we don't have separate
22
22
# variables for config and data.
23
23
if platform .system () == "Windows" :
24
- os .environ ["APPDATA" ] = str (Path (__file__ ).parent / Path ( "data/user_dirs/config" ) )
25
- assert get_user_config_dir () == Path (__file__ ).parent / Path ( "data/user_dirs/config/openeo-python-client" )
24
+ os .environ ["APPDATA" ] = str (Path (__file__ ).parent / "data/user_dirs/config" )
25
+ assert get_user_config_dir () == Path (__file__ ).parent / "data/user_dirs/config/openeo-python-client"
26
26
27
27
28
28
def test_get_user_data_dir ():
@@ -31,8 +31,8 @@ def test_get_user_data_dir():
31
31
# But on Windows we need to set APPDATA instead, and we don't have separate
32
32
# variables for config and data.
33
33
if platform .system () == "Windows" :
34
- os .environ ["APPDATA" ] = str (Path (__file__ ).parent / Path ( "data/user_dirs/data" ) )
35
- assert get_user_data_dir () == Path (__file__ ).parent / Path ( "data/user_dirs/data/openeo-python-client" )
34
+ os .environ ["APPDATA" ] = str (Path (__file__ ).parent / "data/user_dirs/data" )
35
+ assert get_user_data_dir () == Path (__file__ ).parent / "data/user_dirs/data/openeo-python-client"
36
36
37
37
38
38
class TestClientConfig :
You can’t perform that action at this time.
0 commit comments