Skip to content

Commit

Permalink
Don’t swallow item writing exceptions in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geigerzaehler committed Apr 1, 2024
1 parent e4461e5 commit 7702750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def test_move_and_write_after_tags_changed(self):

item["title"] = "a new title"
item.store()
item.try_write() # Required to update mtime.
item.write()
self.runcli("alt", "update", "myexternal")

item.load()
Expand Down

0 comments on commit 7702750

Please sign in to comment.