From 860c0158136fd98216121ce6ce3bd03b70a5dae3 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 20 Sep 2017 13:27:32 -0700 Subject: [PATCH] oci_discovery/uri_template/test: Remove trailing whitespace This snuck in with 06e27154 (oci_discovery/uri_template: Stub for URI Template expansion, 2017-09-11, #7). --- oci_discovery/uri_template/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oci_discovery/uri_template/test.py b/oci_discovery/uri_template/test.py index fc87982..0fe44ee 100644 --- a/oci_discovery/uri_template/test.py +++ b/oci_discovery/uri_template/test.py @@ -19,7 +19,7 @@ import uritemplate except ImportError: uritemplate = None - + from . import URITemplate @@ -27,7 +27,7 @@ class TestURITemplate(unittest.TestCase): def _run(self, cls, exceptions=(), wrong_values=()): """Test against examples from RFC 6570. - + https://tools.ietf.org/html/rfc6570 """ # Defined in https://tools.ietf.org/html/rfc6570#section-3.2 @@ -187,7 +187,7 @@ def _run(self, cls, exceptions=(), wrong_values=()): self.assertNotEqual(expanded, expected) else: self.assertEqual(expanded, expected) - + def test_stub(self): self._run( cls=URITemplate,