BookOps-CAT / bookops-worldcat

BookOps WorldCat Metadata API wrapper
https://bookops-cat.github.io/bookops-worldcat/
MIT License
35 stars 7 forks source link

Tests: fix exception msg assertions #36

Closed klinga closed 3 years ago

klinga commented 3 years ago

fix indentation in exception assertion errors

correct way to assert: with pytest.raises(Exception) as exc: do_something() assert "err msg" in str(exc.value)

klinga commented 3 years ago

fixed in 1d637c0