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

Commit

Permalink
Merge pull request #72 from postatum/102101882_tests_fail
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
jstoiko committed Aug 28, 2015
2 parents 6f328ed + 203656a commit a58092c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def test_parent_queryset(self):
view_cls._json_encoder = 'foo'

request = Mock(
registry={'foo': 'bar'},
registry=Mock(),
path='/foo/foo',
matchdict={'username': 'user12', 'prof_id': 4},
accept=[''], method='GET'
Expand Down Expand Up @@ -286,7 +286,7 @@ def test_parent_queryset_es(self):
view_cls._json_encoder = 'foo'

request = Mock(
registry={'foo': 'bar'},
registry=Mock(),
path='/foo/foo',
matchdict={'username': 'user12', 'prof_id': 4},
accept=[''], method='GET'
Expand Down

0 comments on commit a58092c

Please sign in to comment.