Skip to content

Commit

Permalink
Changed test to use datetime.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamFinkle committed Sep 24, 2024
1 parent 10bf99a commit 012bdb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heat-stack/app/utils/pyodide.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ test('pyodide solves climate change', async () => {
summaryInput = SummaryInput(**summaryInputFromJs)
temperatureInput = TemperatureInput(**temperatureInputFromJs)
temperatureInput = TemperatureInput(dates=[date.fromisoformat(date) for date in temperatureInputFromJs["dates"]], temperatures=temperatureInputFromJs["temperatures"])
outputs = engine.get_outputs_natural_gas(summaryInput,temperatureInput, naturalGasInputRecords)
Expand Down

0 comments on commit 012bdb2

Please sign in to comment.