Explorar o código

Merge pull request #3592 from stakodiak/fix-privilege-typo

Fix a typo in a test's name.
Aanand Prasad %!s(int64=9) %!d(string=hai) anos
pai
achega
1e176b58c5
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      tests/integration/service_test.py

+ 2 - 2
tests/integration/service_test.py

@@ -593,12 +593,12 @@ class ServiceTest(DockerClientTestCase):
         service.build()
         assert service.image()
 
-    def test_start_container_stays_unpriviliged(self):
+    def test_start_container_stays_unprivileged(self):
         service = self.create_service('web')
         container = create_and_start_container(service).inspect()
         self.assertEqual(container['HostConfig']['Privileged'], False)
 
-    def test_start_container_becomes_priviliged(self):
+    def test_start_container_becomes_privileged(self):
         service = self.create_service('web', privileged=True)
         container = create_and_start_container(service).inspect()
         self.assertEqual(container['HostConfig']['Privileged'], True)