summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Holden <alex@alexjonasholden.com>2014-03-07 09:56:25 -0800
committerAlex Holden <alex@alexjonasholden.com>2014-03-07 09:56:36 -0800
commit18520a9943f1fe6f49a65e00b5e19318986ed08d (patch)
tree9a273a8d3c048668b860a9e0d2a431e5b76c36f5
parent63dad5c8f4062531004b5d3a5edb4878127ca5a8 (diff)
downloadswift-18520a9943f1fe6f49a65e00b5e19318986ed08d.tar.gz
Fixed mispelling in function name - accross to across
Change-Id: I7d9749218d277c9e71e47d903b3126f9f73ffe65
-rw-r--r--test/unit/proxy/test_server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/proxy/test_server.py b/test/unit/proxy/test_server.py
index 8ff92eaa3..a361c069f 100644
--- a/test/unit/proxy/test_server.py
+++ b/test/unit/proxy/test_server.py
@@ -2241,7 +2241,7 @@ class TestObjectController(unittest.TestCase):
self.assertEquals(resp.status_int, 201)
self.assertEquals(resp.headers['x-copied-from'], 'c/o')
- def test_basic_put_with_x_copy_from_accross_container(self):
+ def test_basic_put_with_x_copy_from_across_container(self):
req = Request.blank('/v1/a/c/o', environ={'REQUEST_METHOD': 'PUT'},
headers={'Content-Length': '0',
'X-Copy-From': 'c2/o'})
@@ -2407,7 +2407,7 @@ class TestObjectController(unittest.TestCase):
self.assertEquals(resp.status_int, 201)
self.assertEquals(resp.headers['x-copied-from'], 'c/o')
- def test_COPY_accross_containers(self):
+ def test_COPY_across_containers(self):
req = Request.blank('/v1/a/c/o',
environ={'REQUEST_METHOD': 'COPY'},
headers={'Destination': 'c2/o'})