~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__simple_set.py

Change all of the compiled_foo to compiled_foo_feature

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
# Even though this is an extension, we don't permute the tests for a python
79
79
# version. As the plain python version is just a dict or set
80
 
compiled_simpleset = tests.ModuleAvailableFeature('bzrlib._simple_set_pyx')
 
80
compiled_simpleset_feature = tests.ModuleAvailableFeature(
 
81
                                'bzrlib._simple_set_pyx')
81
82
 
82
83
 
83
84
class TestSimpleSet(tests.TestCase):
84
85
 
85
 
    _test_needs_features = [compiled_simpleset]
 
86
    _test_needs_features = [compiled_simpleset_feature]
86
87
    module = _simple_set_pyx
87
88
 
88
89
    def assertIn(self, obj, container):