Commit fab881e0 authored by Bharath Ramsundar's avatar Bharath Ramsundar
Browse files

Fix relative path in test lookup

parent f853457e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ class TestSplitAPI(unittest.TestCase):

  def setUp(self):
    self.current_dir = os.path.dirname(os.path.abspath(__file__))
    self.test_data_dir = os.path.join(self.current_dir, "../../models/test")
    self.test_data_dir = os.path.join(self.current_dir, "../../models/tests")
    self.smiles_field = "smiles"
    self.feature_dir = tempfile.mkdtemp()
    self.samples_dir = tempfile.mkdtemp()