@@ -35,7 +35,7 @@ def remove_git_data(local: GitDir) -> None:
3535 # abs path to config
3636 "install --config .mirror.yaml" ,
3737 0 ,
38- snapshot ("" ),
38+ snapshot ("Install complete! " ),
3939 "installer_tests/empty_repo_with_config" ,
4040 ),
4141 (
@@ -69,7 +69,7 @@ def remove_git_data(local: GitDir) -> None:
6969 # abs path + remote (valid)
7070 "install --config-repo https://github.com/George-Ogden/mirror-rorrim-test-data/ --config-file /config-only.yaml" ,
7171 0 ,
72- snapshot ("" ),
72+ snapshot ("Install complete! " ),
7373 None ,
7474 ),
7575 (
@@ -103,22 +103,24 @@ def remove_git_data(local: GitDir) -> None:
103103 # overwrite local mirror file
104104 "install -C https://github.com/George-Ogden/mirror-rorrim-test-data --config-file config-only.yaml" ,
105105 0 ,
106- snapshot ("'.mirror.yaml' has been overwritten during installation." ),
106+ snapshot (
107+ "'.mirror.yaml' has been overwritten during installation. Install complete!"
108+ ),
107109 "installer_tests/remote_config_overwrite" ,
108110 ),
109111 (
110112 # overwrite local mirror file with itself
111113 "install" ,
112114 0 ,
113- snapshot ("" ),
115+ snapshot ("Install complete! " ),
114116 "installer_tests/remote_config_overwrite" ,
115117 ),
116118 # check tests
117119 (
118120 # works fine
119121 "check" ,
120122 0 ,
121- snapshot ("" ),
123+ snapshot ("All up to date! " ),
122124 "checker_tests/up_to_date" ,
123125 ),
124126 (
@@ -142,7 +144,7 @@ def remove_git_data(local: GitDir) -> None:
142144 # works fine
143145 "sync" ,
144146 0 ,
145- snapshot ("" ),
147+ snapshot ("All synced! " ),
146148 "syncer_tests/behind" ,
147149 ),
148150 (
@@ -177,7 +179,7 @@ def remove_git_data(local: GitDir) -> None:
177179 "sync" ,
178180 0 ,
179181 snapshot (
180- "'.mirror.yaml' modified while syncing. Please merge any conflicts then rerun to sync any added files."
182+ "'.mirror.yaml' modified while syncing. Please merge any conflicts then rerun to sync any added files. All synced! "
181183 ),
182184 "syncer_tests/update_mirror" ,
183185 ),
0 commit comments