summaryrefslogtreecommitdiff
path: root/tests/oauth2/rfc6749/test_utils.py
diff options
context:
space:
mode:
authorPieter Ennes <pieter@ennes.nl>2015-03-05 14:23:15 +0000
committerPieter Ennes <pieter@ennes.nl>2015-03-05 14:23:15 +0000
commit3e7b6178e2db14043e1bfe0beba8ab971f42cfc5 (patch)
tree8f2afe4fd7f3808c9a4af6448b69321c36098a49 /tests/oauth2/rfc6749/test_utils.py
parent9dc964c589925da534850f5e6658c91b3d638dcf (diff)
downloadoauthlib-3e7b6178e2db14043e1bfe0beba8ab971f42cfc5.tar.gz
Test trimming of whitespace.
Diffstat (limited to 'tests/oauth2/rfc6749/test_utils.py')
-rw-r--r--tests/oauth2/rfc6749/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oauth2/rfc6749/test_utils.py b/tests/oauth2/rfc6749/test_utils.py
index f15bbc3..d292eeb 100644
--- a/tests/oauth2/rfc6749/test_utils.py
+++ b/tests/oauth2/rfc6749/test_utils.py
@@ -79,7 +79,7 @@ class UtilsTests(TestCase):
def test_scope_to_list(self):
expected = ['foo', 'bar', 'baz']
- string_scopes = 'foo bar baz'
+ string_scopes = 'foo bar baz '
self.assertEqual(scope_to_list(string_scopes), expected)
string_list_scopes = ['foo', 'bar', 'baz']