Skip to content

Commit 6448cfb

Browse files
committed
Fix tests
1 parent ec8c67e commit 6448cfb

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

55
## [0.0.1] - 2025-07-18
66

7-
## Added
7+
### Added
88

99
- First release of `pyTRT` with ILS method.
1010

test/test_load_data.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ def test_value_errors_trt():
1515
TRTData(FOLDER.parent.joinpath("examples/data/Linz.csv"), 't [s]', 'Tf [degC]', decimal=',', )
1616
with pytest.raises(ValueError):
1717
TRTData(FOLDER.parent.joinpath("examples/data/Linz.csv"), 't [s]', decimal=',')
18-
with pytest.raises(ValueError):
19-
TRTData(FOLDER.parent.joinpath("examples/data/Linz.csv"), 't [s]', col_temp_in='Tf [degC]', decimal=',')
18+
with pytest.raises(ValueError):
19+
TRTData(FOLDER.parent.joinpath("examples/data/Linz.csv"), 't [s]', col_temp_in='Tf [degC]', decimal=',')
20+
with pytest.raises(ValueError):
21+
TRTData(FOLDER.parent.joinpath("examples/data/Linz.csv"), 't [s]', 'Tf [degC]', 'Tf [degC]', 'Tf [degC]',
22+
decimal=',')
2023

2124

2225
def test_p_average():

0 commit comments

Comments
 (0)