Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfullard authored Jul 18, 2023
1 parent 71e922e commit a1ac4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/io/config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def from_config_dict(cls, config_dict, validate=True, config_dirname=""):
raise ValueError(
f"Initial Temperature of Inner Boundary Black Body is Invalid, {initial_t_inner}"
)
if initial_t_rad.value < 0:
if initial_t_rad.value < -1:
raise ValueError(
f"Initial Radiative Temperature is Invalid, {initial_t_rad}"
)
Expand Down

0 comments on commit a1ac4d4

Please sign in to comment.