Skip to content
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.

Commit

Permalink
Fixes pep8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Sommerhalder committed Jan 31, 2019
1 parent db2c2b2 commit d79aa68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions onegov/gazette/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def test_notice_organization(session):
session.flush()
assert notice.organization_id == 'xxx'
assert notice.organization_object == organization
assert notice.organization is 'Organization' # through title observer
assert notice.organization == 'Organization' # through title observer


def test_notice_category(session):
Expand All @@ -505,7 +505,7 @@ def test_notice_category(session):
session.flush()
assert notice.category_id == 'xxx'
assert notice.category_object == category
assert notice.category is 'Category' # through title observer
assert notice.category == 'Category' # through title observer


def test_notice_issues(session):
Expand Down

0 comments on commit d79aa68

Please sign in to comment.