Blame SOURCES/0216-reportclient-fix-verbosity-test.patch

562801
From 10fb97f11e27c4ac2144005f0ac28b8beff14733 Mon Sep 17 00:00:00 2001
562801
From: Matej Habrnal <mhabrnal@redhat.com>
562801
Date: Wed, 8 Feb 2017 14:50:49 +0100
562801
Subject: [PATCH] reportclient: fix verbosity test
562801
562801
Imported missing report module.
562801
562801
Related #1257159
562801
562801
Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>
562801
---
562801
 tests/client_python.at | 4 ++++
562801
 1 file changed, 4 insertions(+)
562801
562801
diff --git a/tests/client_python.at b/tests/client_python.at
562801
index 656b1b2..9f1c1c1 100644
562801
--- a/tests/client_python.at
562801
+++ b/tests/client_python.at
562801
@@ -13,7 +13,11 @@ import unittest
562801
 
562801
 sys.path.insert(0, "../../../src/client-python")
562801
 sys.path.insert(0, "../../../src/client-python/.libs")
562801
+sys.path.insert(0, "../../../src/report-python")
562801
+sys.path.insert(0, "../../../src/report-python/.libs")
562801
 
562801
+report = __import__("report-python", globals(), locals(), [], -1)
562801
+sys.modules["report"] = report
562801
 
562801
 class TestReportClientVerbose(unittest.TestCase):
562801
     def setUp(self):
562801
-- 
562801
1.8.3.1
562801