Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RemDelaporteMathurin committed Aug 29, 2024
1 parent a005f57 commit 348183b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/test_h_transport_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def test_iterate():
my_model.settings = F.Settings(atol=1e-6, rtol=1e-6, final_time=10)
my_model.settings.stepsize = 2.0

my_model.progress = tqdm.autonotebook.tqdm(
my_model.progress_bar = tqdm.autonotebook.tqdm(
desc="Solving H transport problem",
total=my_model.settings.final_time,
unit_scale=True,
Expand Down Expand Up @@ -915,7 +915,7 @@ def test_adaptive_timestepping_grows():

my_model.initialise()

my_model.progress = tqdm.autonotebook.tqdm(
my_model.progress_bar = tqdm.autonotebook.tqdm(
desc="Solving H transport problem",
total=my_model.settings.final_time,
unit_scale=True,
Expand Down Expand Up @@ -951,7 +951,7 @@ def test_adaptive_timestepping_shrinks():

my_model.initialise()

my_model.progress = tqdm.autonotebook.tqdm(
my_model.progress_bar = tqdm.autonotebook.tqdm(
desc="Solving H transport problem",
total=my_model.settings.final_time,
unit_scale=True,
Expand Down
4 changes: 2 additions & 2 deletions test/test_heat_transfer_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def test_adaptive_timestepping_grows():

my_model.initialise()

my_model.progress = tqdm.autonotebook.tqdm(
my_model.progress_bar = tqdm.autonotebook.tqdm(
desc="Solving H transport problem",
total=my_model.settings.final_time,
unit_scale=True,
Expand Down Expand Up @@ -548,7 +548,7 @@ def test_adaptive_timestepping_shrinks():

my_model.initialise()

my_model.progress = tqdm.autonotebook.tqdm(
my_model.progress_bar = tqdm.autonotebook.tqdm(
desc="Solving H transport problem",
total=my_model.settings.final_time,
unit_scale=True,
Expand Down

0 comments on commit 348183b

Please sign in to comment.