Skip to content

Commit a2966c9

Browse files
JacksonBurnsrwest
authored andcommitted
fix filepaths in thermo test with new data location
1 parent 13fc190 commit a2966c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/rmgpy/data/thermoTest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1632,8 +1632,8 @@ def test_remove_group(self):
16321632
"""
16331633
# load up test data designed for this test
16341634
database2 = ThermoDatabase()
1635-
path = os.path.join(os.path.dirname(rmgpy.__file__), "data/test_data/")
1636-
database2.load(os.path.join(path, "thermo"), depository=False)
1635+
path = os.path.join(os.path.dirname(__file__),"..","test_data","testing_database","thermo")
1636+
database2.load(path, depository=False)
16371637

16381638
# load up the thermo radical database as a test
16391639
rad_group = database2.groups["radical"]

0 commit comments

Comments
 (0)