@@ -731,7 +731,7 @@ def test_heating(tmp_path, capsys, ensemble):
731
731
assert final_file .exists ()
732
732
733
733
# Check progress bar has completed.
734
- assert "━━ 2/2" in capsys .readouterr ().out
734
+ assert "2/2" in capsys .readouterr ().out
735
735
736
736
737
737
@pytest .mark .parametrize ("ensemble" , ensembles_without_thermostat )
@@ -835,7 +835,7 @@ def test_heating_md(tmp_path, capsys, ensemble):
835
835
assert stat_data .units [target_t_col ] == "K"
836
836
837
837
# Check progress bar has completed.
838
- assert "━━ 9/9" in capsys .readouterr ().out
838
+ assert "9/9" in capsys .readouterr ().out
839
839
840
840
841
841
def test_heating_restart (tmp_path , capsys ):
@@ -879,7 +879,7 @@ def test_heating_restart(tmp_path, capsys):
879
879
assert stat_data .data [8 , target_t_col ] == 30
880
880
881
881
# Check progress bar is correct.
882
- assert "━━ 8/8" in capsys .readouterr ().out
882
+ assert "8/8" in capsys .readouterr ().out
883
883
884
884
885
885
def test_heating_files ():
@@ -1049,7 +1049,7 @@ def test_cooling(tmp_path, capsys):
1049
1049
assert stats .data [2 , 16 ] == 10.0
1050
1050
1051
1051
# Check progress bar
1052
- assert "━━ 2/2" in capsys .readouterr ().out
1052
+ assert "2/2" in capsys .readouterr ().out
1053
1053
1054
1054
1055
1055
def test_heating_too_short (tmp_path ):
@@ -1234,7 +1234,7 @@ def test_auto_restart(tmp_path, capsys):
1234
1234
assert len (final_traj ) == 8
1235
1235
1236
1236
# Check progress bar has completed.
1237
- assert "━━ 7/7" in capsys .readouterr ().out
1237
+ assert "7/7" in capsys .readouterr ().out
1238
1238
1239
1239
finally :
1240
1240
shutil .rmtree (results_dir , ignore_errors = True )
@@ -1366,4 +1366,4 @@ def test_progress_bar_complete(tmp_path, capsys, ensemble, tag):
1366
1366
md .run ()
1367
1367
1368
1368
# Check progress bar has completed.
1369
- assert "━━ 2/2" in capsys .readouterr ().out
1369
+ assert "2/2" in capsys .readouterr ().out
0 commit comments