From b5aab0edfbcfddce82e8ee02d9bd383604b9de93 Mon Sep 17 00:00:00 2001 From: Liezl Maree <38435167+roomrys@users.noreply.github.com> Date: Tue, 11 Apr 2023 12:03:45 -0700 Subject: [PATCH] Fix intermittent bug (file-corruption) that has snuck into the tests (#1267) * Remove corrupted test file * Add non-corrupted copy of test file * Rename the file so tests run --- .../{robot_siv.slp => small_robot_siv.slp} | Bin tests/fixtures/datasets.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/data/siv_format_v1/{robot_siv.slp => small_robot_siv.slp} (100%) diff --git a/tests/data/siv_format_v1/robot_siv.slp b/tests/data/siv_format_v1/small_robot_siv.slp similarity index 100% rename from tests/data/siv_format_v1/robot_siv.slp rename to tests/data/siv_format_v1/small_robot_siv.slp diff --git a/tests/fixtures/datasets.py b/tests/fixtures/datasets.py index 423d55e18..0390e4706 100644 --- a/tests/fixtures/datasets.py +++ b/tests/fixtures/datasets.py @@ -19,7 +19,7 @@ TEST_SLP_MIN_LABELS = "tests/data/slp_hdf5/minimal_instance.slp" TEST_MAT_LABELS = "tests/data/mat/labels.mat" TEST_SLP_MIN_LABELS_ROBOT = "tests/data/slp_hdf5/small_robot_minimal.slp" -TEST_SLP_SIV_ROBOT = "tests/data/siv_format_v1/robot_siv.slp" +TEST_SLP_SIV_ROBOT = "tests/data/siv_format_v1/small_robot_siv.slp" TEST_MIN_TRACKS_2NODE_LABELS = "tests/data/tracks/clip.2node.slp" TEST_MIN_TRACKS_13NODE_LABELS = "tests/data/tracks/clip.slp" TEST_HDF5_PREDICTIONS = "tests/data/hdf5_format_v1/centered_pair_predictions.h5"