Skip to content

Commit

Permalink
Fix micro_dummy code in the integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
IshaanDesai committed Feb 3, 2025
1 parent fa2de2b commit 2ab6c66
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/integration/test_unit_cube/micro_dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ def initialize(self):
}

def solve(self, macro_data, dt):
time.sleep(self._this_sim_type_1 * 0.001)
time.sleep(self._this_sim_type * 0.001)

return {
"micro-data-1": self._this_sim_type_1 * 0.5,
"micro-data-1": self._this_sim_type * 0.5,
"micro-data-2": [
self._this_sim_type_1 * 2,
self._this_sim_type_1 * 3,
self._this_sim_type_1 * 4,
self._this_sim_type * 2,
self._this_sim_type * 3,
self._this_sim_type * 4,
],
}

Expand Down

0 comments on commit 2ab6c66

Please sign in to comment.