@@ -159,7 +159,7 @@ def test_app_errors(self, mock_requests):
159159 def test_app_reserved_names (self , mock_requests ):
160160 """Nobody should be able to create applications with names which are reserved."""
161161 reserved_names = ['foo' , 'bar' ]
162- with self .settings (DRYCC_RESERVED_NAMES = reserved_names ):
162+ with self .settings (RESERVED_NAMES = reserved_names ):
163163 for name in reserved_names :
164164 response = self .client .post ('/v2/apps' , {'id' : name })
165165 self .assertContains (
@@ -531,7 +531,7 @@ def test_list_ordering(self, mock_requests):
531531 """
532532 Test that a list of apps is sorted by name
533533 """
534- for name in ['zulu ' , 'tango' , 'alpha' , 'foxtrot' ]:
534+ for name in ['zulua ' , 'tango' , 'alpha' , 'foxtrot' ]:
535535 response = self .client .post ('/v2/apps' , {'id' : name })
536536 self .assertEqual (response .status_code , 201 , response .data )
537537
@@ -540,7 +540,7 @@ def test_list_ordering(self, mock_requests):
540540 self .assertEqual (apps [0 ]['id' ], 'alpha' )
541541 self .assertEqual (apps [1 ]['id' ], 'foxtrot' )
542542 self .assertEqual (apps [2 ]['id' ], 'tango' )
543- self .assertEqual (apps [3 ]['id' ], 'zulu ' )
543+ self .assertEqual (apps [3 ]['id' ], 'zulua ' )
544544
545545 def test_get_private_registry_config (self , mock_requests ):
546546 registry = {"web" : {'username' : 'test' , 'password' : 'test' }}
0 commit comments