Fix Makefile for RHEL7

This commit is contained in:
Jana Cupova 2022-09-06 11:25:02 +02:00 committed by Tomas Kopecek
parent 92a773a19d
commit 3999667a8c
5 changed files with 36 additions and 50 deletions

View file

@ -125,7 +125,7 @@ class TestQueryProcessor(unittest.TestCase):
result = next(generator)
self.assertEqual(result, {'something': 'value number 3'})
@mock.patch('kojihub._multiRow')
@mock.patch('koji.db._multiRow')
def test_execution_as_list_transform(self, multirow):
multirow.return_value = [{'col1': 'result_1_col_1', 'col2': 'result_1_col_2'},
{'col1': 'result_2_col_1', 'col2': 'result_2_col_2'}]