From 5fb63b4520855837b029cd986ee38f8751078965 Mon Sep 17 00:00:00 2001 From: Georgia Gkioxari Date: Wed, 18 Nov 2020 14:06:00 -0800 Subject: [PATCH] move icp_data.pth to tests/data Summary: Move icp_data.pth to tests/data Reviewed By: bottler Differential Revision: D25012575 fbshipit-source-id: 9252d2eeca9141c82ad3bf9d3e3331a2eab5203b --- tests/{ => data}/icp_data.pth | Bin tests/test_points_alignment.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{ => data}/icp_data.pth (100%) diff --git a/tests/icp_data.pth b/tests/data/icp_data.pth similarity index 100% rename from tests/icp_data.pth rename to tests/data/icp_data.pth diff --git a/tests/test_points_alignment.py b/tests/test_points_alignment.py index b7d59d7d..680e6a69 100644 --- a/tests/test_points_alignment.py +++ b/tests/test_points_alignment.py @@ -40,7 +40,7 @@ class TestICP(TestCaseMixin, unittest.TestCase): super().setUp() torch.manual_seed(42) np.random.seed(42) - trimesh_results_path = Path(__file__).resolve().parent / "icp_data.pth" + trimesh_results_path = Path(__file__).resolve().parent / "data/icp_data.pth" self.trimesh_results = torch.load(trimesh_results_path) @staticmethod