Skip to content

Commit

Permalink
Fix py26 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Mar 4, 2015
1 parent 4552f23 commit 04f4eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def test_nested_argdict_has_type_dict(self):
assert 'Expected type "object" for myarg, got "string"' in str(excinfo)

def test_nested_argdict_can_be_a_dict_subclass(self):
arg = Arg(DjMultiDict({'foo': Arg()}))
assert arg.type == DjMultiDict
arg = Arg(WerkMultiDict([('foo', 'bar')]))
assert arg.type == WerkMultiDict

def test_has_nesting(self):
arg = Arg({'foo': Arg()})
Expand Down

0 comments on commit 04f4eca

Please sign in to comment.