tests: fix fixture imports

This commit is contained in:
Willi Ballenthin
2023-07-06 19:04:53 +02:00
parent e675bef062
commit a43d2c115f
10 changed files with 34 additions and 12 deletions

View File

@@ -7,10 +7,10 @@
# See the License for the specific language governing permissions and limitations under the License.
import fixtures
from fixtures import parametrize
from fixtures import scope, sample
@parametrize(
@fixtures.parametrize(
"sample,scope,feature,expected",
fixtures.FEATURE_PRESENCE_TESTS_DOTNET,
indirect=["sample", "scope"],
@@ -19,7 +19,7 @@ def test_dnfile_features(sample, scope, feature, expected):
fixtures.do_test_feature_presence(fixtures.get_dnfile_extractor, sample, scope, feature, expected)
@parametrize(
@fixtures.parametrize(
"sample,scope,feature,expected",
fixtures.FEATURE_COUNT_TESTS_DOTNET,
indirect=["sample", "scope"],