summaryrefslogtreecommitdiff
path: root/src/python/test/test_reader_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/test/test_reader_utils.py')
-rwxr-xr-xsrc/python/test/test_reader_utils.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/python/test/test_reader_utils.py b/src/python/test/test_reader_utils.py
index 91de9ba0..4fc7c00f 100755
--- a/src/python/test/test_reader_utils.py
+++ b/src/python/test/test_reader_utils.py
@@ -125,19 +125,3 @@ def test_read_persistence_intervals_with_dimension():
1: [(9.6, 14.0), (3.0, float("Inf"))],
3: [(34.2, 34.974)],
}
-
-
-def test_non_existing_weights_file():
- with raises(FileNotFoundError):
- # Try to open a non existing file
- persistence = gd.read_weights(weight_file="pouetpouettralala.toubiloubabdou")
-
-def test_read_weights():
- # Create test file
- test_file = open("test_read_weights.wgt", "w")
- test_file.write(
- "2.7\n 9.6 \n\t34.2\n3.\t\n\n"
- )
- test_file.close()
- weights = gd.read_weights(weight_file = "test_read_weights.wgt")
- assert weights == [2.7, 9.6, 34.2, 3.]