Skip to content

Commit

Permalink
qa
Browse files Browse the repository at this point in the history
  • Loading branch information
liuly12 committed Oct 2, 2024
1 parent 190d466 commit f64e9c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,13 +413,13 @@ def test_deny(self):
self.assertDictEqual(d2, reply)

def test_data_read(self):
data_path = '../docs/demo/data/processed/timeries_data.csv'
data_path = "../docs/demo/data/processed/timeries_data.csv"
input_data = pd.read_csv(data_path)
node = Node(name="", data_input_dict=data_path)
node.t = Node.data_input_dict.keys()[0][1]

self.assertEqual(
input_data['temperature'].iloc[0], node.get_data_input("temperature")
input_data["temperature"].iloc[0], node.get_data_input("temperature")
)


Expand Down

0 comments on commit f64e9c3

Please sign in to comment.