diff --git a/tests/tests/test_legacy_parser/test_legacy_export_import.py b/tests/tests/test_legacy_parser/test_legacy_export_import.py index ac8a6f231..b14c3fce3 100644 --- a/tests/tests/test_legacy_parser/test_legacy_export_import.py +++ b/tests/tests/test_legacy_parser/test_legacy_export_import.py @@ -1,4 +1,4 @@ -import phoebe as phb2 +import phoebe import numpy as np @@ -10,7 +10,7 @@ def test_reimport(filename=None): b.add_compute(kind='legacy') b.export_legacy('test.legacy') - b2 = phb2.from_legacy('test.legacy') + b2 = phoebe.from_legacy('test.legacy') # check to see if datasets are attached and the right number Nlcs = len(b.get_dataset(kind='lc').datasets)