Skip to content

Commit

Permalink
Fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia committed Dec 2, 2024
1 parent 5ad13d0 commit f9de256
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
#
html_theme = 'sphinx_rtd_theme'
html_theme_options = {
'display_version': True,
'version_selector': True,
}

# Add any paths that contain custom static files (such as style sheets) here,
Expand Down
3 changes: 2 additions & 1 deletion vivarium/core/serialize_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ def test_non_string_keys() -> None:
except TypeError as e:
expected_error = (
"These paths end in incompatible non-string or Numpy string " +
"keys: [(np.str_('1'),), (1,), ('string', 'string2', 'string3', np.str_('1'))]")
"keys: [(np.str_('1'),), (1,), ('string', 'string2', 'string3', " +
"np.str_('1'))]")
assert str(e) == expected_error


Expand Down

0 comments on commit f9de256

Please sign in to comment.