Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
btimby committed May 7, 2018
1 parent a1a4b78 commit ba642d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ def test_set_get_item(self):
self.assertEqual([b'foobar'], a[radius.ATTR_USER_NAME])
self.assertEqual([b'foobar'], a['user-name'])
self.assertEqual([b'foobar'], a['user-Name'])
self.assertEqual([('User-Name', ['foobar'])], list(a.nameditems()))
self.assertEqual(
[(None, ['bar']), ('User-Name', ['foobar'])], list(a.nameditems()))

def test_init_update(self):
"""Test __init__ and update."""
Expand Down

0 comments on commit ba642d2

Please sign in to comment.