Skip to content

Commit

Permalink
fix: there was a remaining typo
Browse files Browse the repository at this point in the history
  • Loading branch information
uriii3 committed Jun 6, 2024
1 parent b9eb106 commit a0e3476
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_get_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def test_get_sync(self, tmp_path):
)

def test_get_sync_delete(self, tmp_path):

self.when_I_get_some_native_files_with_sync(tmp_path)
self.when_I_add_a_file_locally(tmp_path)
self.then_command_sync_delete_should_propose_to_delete_it_and_delete_it(
Expand Down Expand Up @@ -131,7 +132,7 @@ def then_same_command_with_sync_should_download_only_one_file(
def when_I_add_a_file_locally(self, tmp_path):
self.command = [
"touch",
f"{tmp_path}s/ARCTIC_MULTIYEAR_BGC_002_005"
f"{tmp_path}/ARCTIC_MULTIYEAR_BGC_002_005"
"/cmems_mod_arc_bgc_my_ecosmo_P1D-m_202105"
"/2007/01/"
"20070120_dm-25km-NERSC-MODEL-ECOSMO-ARC-RAN-fv2.0.nc",
Expand All @@ -156,6 +157,7 @@ def then_command_sync_delete_should_propose_to_delete_it_and_delete_it(
f"{tmp_path}",
]
self.output = execute_in_terminal(self.command)
print(self.output.stdout)
assert (
b"Some files will be deleted due to sync delete:"
in self.output.stdout
Expand Down

0 comments on commit a0e3476

Please sign in to comment.