From 6f8a5a5652e3372b3138c1e135ba048e933d33be Mon Sep 17 00:00:00 2001 From: Bruno Goncalves Date: Mar 21 2018 14:54:57 +0000 Subject: fixed standard-test-beakerlib code using inspekt --- diff --git a/roles/standard-test-beakerlib/files/rpm.py b/roles/standard-test-beakerlib/files/rpm.py index 83093be..02a0ccc 100644 --- a/roles/standard-test-beakerlib/files/rpm.py +++ b/roles/standard-test-beakerlib/files/rpm.py @@ -7,9 +7,11 @@ # Although tests that have been looked at so far work just fine with TransactionSet.dbMatch() # returning empty results, it may be the case this needs to be extended to add further shim code. + class TransactionSet: - def dbMatch(self, key, value): - return [] + def dbMatch(self, key, value): + return [] + def ts(): return TransactionSet()