Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa committed Oct 22, 2024
1 parent 788bc19 commit 16fa7d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uwtools/tests/drivers/test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ class ConcreteDriverTimeInvariant(Common, driver.DriverTimeInvariant):

@property
def output(self):
return {"foo": "/path/to/foo", "bar": ["/path/to/bar1", "/path/to/bar2"]}
# The dict keys are intentionally out-of-alphabetical-order to test JSON sorting.
return {"bar": ["/path/to/bar1", "/path/to/bar2"], "foo": "/path/to/foo"}


def write(path, x):
Expand Down

0 comments on commit 16fa7d6

Please sign in to comment.