summaryrefslogtreecommitdiff
path: root/unittests/framework/test_profile.py
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/framework/test_profile.py')
-rw-r--r--unittests/framework/test_profile.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/unittests/framework/test_profile.py b/unittests/framework/test_profile.py
index 4ff9ea579..66713497b 100644
--- a/unittests/framework/test_profile.py
+++ b/unittests/framework/test_profile.py
@@ -152,7 +152,7 @@ class TestTestProfile(object):
"""
profile_ = profile.TestProfile()
profile_.test_list = self.data
- profile_._prepare_test_list()
+ profile_.prepare_test_list()
assert dict(profile_.test_list) == dict(self.data)
@@ -164,7 +164,7 @@ class TestTestProfile(object):
profile_ = profile.TestProfile()
profile_.test_list = self.data
- profile_._prepare_test_list()
+ profile_.prepare_test_list()
baseline = {
grouptools.join('group3', 'test5'): utils.Test(['other'])}
@@ -184,7 +184,7 @@ class TestTestProfile(object):
profile_ = profile.TestProfile()
profile_.test_list = self.data
- profile_._prepare_test_list()
+ profile_.prepare_test_list()
assert dict(profile_.test_list) == dict(baseline)
@@ -199,7 +199,7 @@ class TestTestProfile(object):
profile_ = profile.TestProfile()
profile_.test_list = self.data
- profile_._prepare_test_list()
+ profile_.prepare_test_list()
assert dict(profile_.test_list) == dict(baseline)
@@ -211,7 +211,7 @@ class TestTestProfile(object):
profile_ = profile.TestProfile()
profile_.test_list = self.data
- profile_._prepare_test_list()
+ profile_.prepare_test_list()
assert grouptools.join('group4', 'Test9') not in profile_.test_list