From 936b5a572d43c7694e3534c52331c2658cd04b40 Mon Sep 17 00:00:00 2001 From: Takashi NATSUME Date: Tue, 17 Apr 2018 11:35:20 +0900 Subject: [PATCH] Fix comments in novaclient/tests/unit/fakes.py Replace 'Assert than' with 'Assert that'. TrivialFix Change-Id: I426895467dfa693214f78b495d82e730f4307b9d --- novaclient/tests/unit/fakes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/novaclient/tests/unit/fakes.py b/novaclient/tests/unit/fakes.py index e89370bc6..b2820a48a 100644 --- a/novaclient/tests/unit/fakes.py +++ b/novaclient/tests/unit/fakes.py @@ -42,7 +42,7 @@ def assert_has_keys(dict, required=None, optional=None): class FakeClient(object): def assert_called(self, method, url, body=None, pos=-1): - """Assert than an HTTP method was called at given order/position. + """Assert that an HTTP method was called at given order/position. :param method: HTTP method name which is expected to be called :param url: Expected request url to be called with given method @@ -98,7 +98,7 @@ class FakeClient(object): (self.client.callstack[pos][2], body)) def assert_called_anytime(self, method, url, body=None): - """Assert than an HTTP method was called anytime in the test. + """Assert that an HTTP method was called anytime in the test. :param method: HTTP method name which is expected to be called :param url: Expected request url to be called with given method