File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
services/storage/tests/unit Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ def test_ensure_user_selection_from_same_base_directory(
107107 (f"{ _PID1 } /{ _NID1 } " , "project one/project one -> node one" ),
108108 (f"{ _PID1 } /{ _NID1 } /something" , "project one/project one -> node one/something" ),
109109 (f"{ _PID1 } /{ _NID1 } /{ _NID2 } " , f"project one/project one -> node one/{ _NID2 } " ),
110+ (
111+ f"{ _PID1 } /{ _NID1 } /{ _NID2 } /something" ,
112+ f"project one/project one -> node one/{ _NID2 } /something" ,
113+ ),
110114 (f"{ _PID2 } " , "_project_two_" ),
111115 (f"{ _PID2 } /{ _NID1 } " , "_project_two_/_project_two_->_node_one_" ),
112116 (
@@ -117,6 +121,10 @@ def test_ensure_user_selection_from_same_base_directory(
117121 f"{ _PID2 } /{ _NID1 } /{ _NID2 } " ,
118122 f"_project_two_/_project_two_->_node_one_/{ _NID2 } " ,
119123 ),
124+ (
125+ f"{ _PID2 } /{ _NID1 } /{ _NID2 } /something" ,
126+ f"_project_two_/_project_two_->_node_one_/{ _NID2 } /something" ,
127+ ),
120128 ],
121129)
122130def test__replace_node_id_project_id_in_path (path : str , expected : str ):
You can’t perform that action at this time.
0 commit comments