1010# License for the specific language governing permissions and limitations
1111# under the License.
1212
13- from functional .tests .identity .v2 import test_identity
13+ from functional .tests .identity .v2 import common
1414
1515
16- class RoleTests (test_identity .IdentityTests ):
16+ class RoleTests (common .IdentityTests ):
1717
1818 def test_role_create (self ):
1919 self ._create_dummy_role ()
@@ -27,7 +27,7 @@ def test_role_list(self):
2727 self ._create_dummy_role ()
2828 raw_output = self .openstack ('role list' )
2929 items = self .parse_listing (raw_output )
30- self .assert_table_structure (items , test_identity .BASIC_LIST_HEADERS )
30+ self .assert_table_structure (items , common .BASIC_LIST_HEADERS )
3131
3232 def test_role_list_with_user_project (self ):
3333 project_name = self ._create_dummy_project ()
@@ -58,7 +58,7 @@ def test_role_list_with_user_project(self):
5858 '' % {'project' : project_name ,
5959 'user' : username })
6060 items = self .parse_listing (raw_output )
61- self .assert_table_structure (items , test_identity .BASIC_LIST_HEADERS )
61+ self .assert_table_structure (items , common .BASIC_LIST_HEADERS )
6262 self .assertEqual (1 , len (items ))
6363
6464 def test_role_show (self ):
0 commit comments