From 63383fb037ce41f45278555bfe78926a7d6e4329 Mon Sep 17 00:00:00 2001 From: Sarah Blunt Date: Tue, 13 Aug 2024 16:32:05 -0700 Subject: [PATCH] fixed another typo (and ran test on my machine this time to make sure) --- tests/test_hipparcos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_hipparcos.py b/tests/test_hipparcos.py index f6693e51..08299835 100644 --- a/tests/test_hipparcos.py +++ b/tests/test_hipparcos.py @@ -259,9 +259,9 @@ def test_save_load_2021(): myResults.load_results(filename) filename = "tmp3.hdf5" - myResults.saveresults(filename) + myResults.save_results(filename) - os.system("rm tmp*.hdf5") + os.system("rm tmp*") if __name__ == "__main__":