Skip to content

Commit

Permalink
Correct recent merge (#596)
Browse files Browse the repository at this point in the history
Merge c8a7cb1 mistakenly reverted a
line from aef9a3e.
  • Loading branch information
jdufresne authored and skion committed Sep 14, 2018
1 parent c8a7cb1 commit a0f38f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/oauth1/rfc5849/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ClientConstructorTests(TestCase):
def test_convert_to_unicode_resource_owner(self):
client = Client('client-key',
resource_owner_key=b'owner key')
self.assertFalse(isinstance(client.resource_owner_key, bytes))
self.assertNotIsInstance(client.resource_owner_key, bytes)
self.assertEqual(client.resource_owner_key, 'owner key')

def test_give_explicit_timestamp(self):
Expand Down

0 comments on commit a0f38f7

Please sign in to comment.