gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-taler-util] 50/51: Make tests work again.


From: gnunet
Subject: [GNUnet-SVN] [taler-taler-util] 50/51: Make tests work again.
Date: Mon, 23 Sep 2019 22:02:41 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository taler-util.

commit f131b3aae962602e3383f594a2c1aa90672fa4dc
Author: ng0 <address@hidden>
AuthorDate: Mon Sep 23 19:58:57 2019 +0000

    Make tests work again.
---
 tests/log_test.py    | 6 +++---
 tests/test_amount.py | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/log_test.py b/tests/log_test.py
index 90e12c1..82d1ce2 100755
--- a/tests/log_test.py
+++ b/tests/log_test.py
@@ -26,7 +26,7 @@
 #        manually copied into any project which might need it.
 
 from unittest import TestCase
-from gnunet_log import GnunetLogger as GL
+from taler.util.gnunet_log import GnunetLogger as GL
 import os
 from mock import patch, MagicMock
 import logging
@@ -126,7 +126,7 @@ class TestGnunetLog(TestCase):
     @patch("logging.basicConfig")
     def test_non_forced_env(self, mocked_basicConfig, mocked_setLevel):
         assert None == os.environ.get("GNUNET_FORCE_LOG")
-        os.environ["GNUNET_LOG"] = 
"gnunet-pylog;test.py;test_non_forced_env;99;ERROR" # lineno is not 100% 
accurate.
+        os.environ["GNUNET_LOG"] = 
"gnunet-pylog;log_test.py;test_non_forced_env;99;ERROR" # lineno is not 100% 
accurate.
         gl = GL("gnunet-pylog")
         gl.log("msg", gl.DEBUG)
         mocked_setLevel.assert_called_with(level=logging.ERROR)
@@ -145,7 +145,7 @@ class TestGnunetLog(TestCase):
     @patch("logging.basicConfig")
     def test_only_forced_env(self, mocked_basicConfig, mocked_setLevel):
         assert None == os.environ.get("GNUNET_LOG")
-        os.environ["GNUNET_FORCE_LOG"] = 
"gnunet-pylog;test.py;test_only_forced_env;90-200;ERROR"
+        os.environ["GNUNET_FORCE_LOG"] = 
"gnunet-pylog;log_test.py;test_only_forced_env;90-200;ERROR"
         gl = GL("gnunet-pylog")
         gl.log("msg", gl.DEBUG)
         mocked_setLevel.assert_called_with(level=logging.ERROR)
diff --git a/tests/test_amount.py b/tests/test_amount.py
index 41b9037..05620f4 100755
--- a/tests/test_amount.py
+++ b/tests/test_amount.py
@@ -23,7 +23,7 @@
 #  which might need it.
 
 from __future__ import unicode_literals
-from amount import Amount, BadFormatAmount, NumberTooBig, NegativeNumber
+from taler.util.amount import Amount, BadFormatAmount, NumberTooBig, 
NegativeNumber
 from unittest import TestCase
 import json
 from mock import MagicMock

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]