Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindio committed Sep 8, 2017
1 parent 271dca1 commit b5b5e9f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/k8s/test_configmap.py
Expand Up @@ -11,6 +11,7 @@
NAME = "my-name"
NAMESPACE = "my-namespace"


@pytest.mark.usefixtures("k8s_config")
class TestIngress(object):
def test_created_if_not_exists(self, post, api_get):
Expand All @@ -24,7 +25,6 @@ def test_created_if_not_exists(self, post, api_get):

pytest.helpers.assert_any_call(post, _uri(NAMESPACE), call_params)


def test_updated_if_exists(self, get, put):
mock_response = _create_mock_response()
get.return_value = mock_response
Expand All @@ -40,7 +40,6 @@ def test_updated_if_exists(self, get, put):
from_api.save()
pytest.helpers.assert_any_call(put, _uri(NAMESPACE, NAME), call_params)


def test_deleted(self, delete):
ConfigMap.delete(NAME, namespace=NAMESPACE)
pytest.helpers.assert_any_call(delete, _uri(NAMESPACE, NAME))
Expand Down

0 comments on commit b5b5e9f

Please sign in to comment.