From e8ea79dfdb7b722801113131bfe90e88c141dc09 Mon Sep 17 00:00:00 2001 From: Justin Michalicek Date: Tue, 12 Jul 2016 10:04:37 -0400 Subject: [PATCH] Change double underscore in test case names for _set_auth_headers * Change test__set_auth_headers_* methods to test_set_auth_headers_* Signed-off-by: Justin Michalicek --- tests/unit/build_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/build_test.py b/tests/unit/build_test.py index 8bd626bd..b2705eb2 100644 --- a/tests/unit/build_test.py +++ b/tests/unit/build_test.py @@ -122,7 +122,7 @@ class BuildTest(DockerClientTest): }) ) - def test__set_auth_headers_with_empty_dict_and_auth_configs(self): + def test_set_auth_headers_with_empty_dict_and_auth_configs(self): self.client._auth_configs = { 'https://example.com': { 'user': 'example', @@ -137,7 +137,7 @@ class BuildTest(DockerClientTest): self.client._set_auth_headers(headers) self.assertEqual(headers, expected_headers) - def test__set_auth_headers_with_dict_and_auth_configs(self): + def test_set_auth_headers_with_dict_and_auth_configs(self): self.client._auth_configs = { 'https://example.com': { 'user': 'example', @@ -154,7 +154,7 @@ class BuildTest(DockerClientTest): self.client._set_auth_headers(headers) self.assertEqual(headers, expected_headers) - def test__set_auth_headers_with_dict_and_no_auth_configs(self): + def test_set_auth_headers_with_dict_and_no_auth_configs(self): headers = {'foo': 'bar'} expected_headers = { 'foo': 'bar'