Skip to content

Commit

Permalink
Fix wrong page type test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Feb 1, 2024
1 parent c45d899 commit 7058cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pages.py
Expand Up @@ -372,7 +372,7 @@ def test_remove_by_ref(fourpages):

def test_pages_wrong_type(fourpages):
with pytest.raises(TypeError), pytest.deprecated_call():
fourpages.pages.insert(3, {})
fourpages.pages.insert(3, Dictionary())
with pytest.raises(TypeError), pytest.deprecated_call():
fourpages.pages.insert(3, Array([42]))

Expand Down

0 comments on commit 7058cf2

Please sign in to comment.