File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ class TestProjectRename(BaseTestCase):
77 PROJECT_DESCRIPTION = "Desc"
88 PROJECT_TYPE = "Vector"
99 NEW_PROJECT_NAME = "new"
10+ REPLACED_PROJECT_NAME = "_ _ _ _ _ _ _ _ _"
11+ BAD_PROJECT_NAME = '/ \ : * ? " < > |'
1012
1113 def test_project_rename (self ):
1214 sa .rename_project (self .PROJECT_NAME , self .NEW_PROJECT_NAME )
@@ -15,7 +17,7 @@ def test_project_rename(self):
1517 sa .delete_project (self .NEW_PROJECT_NAME )
1618
1719 def test_rename_with_special_characters (self ):
18- sa .rename_project (self .PROJECT_NAME , '/ \ : * ? " < > |' )
19- sa .get_project_metadata ("_ _ _ _ _ _ _ _ _" )
20- sa .delete_project ("_ _ _ _ _ _ _ _ _" )
20+ sa .rename_project (self .PROJECT_NAME , self . BAD_PROJECT_NAME )
21+ sa .get_project_metadata (self . REPLACED_PROJECT_NAME )
22+ sa .delete_project (self . REPLACED_PROJECT_NAME )
2123
You can’t perform that action at this time.
0 commit comments