summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wheeler <jonathan.m.wheeler@gmail.com>2018-07-13 08:32:18 -0700
committerJonathan Wheeler <jonathan.m.wheeler@gmail.com>2018-07-13 08:32:18 -0700
commit39b130efa34d8e7cd5077564bff8a7e6ac1433c1 (patch)
treef4bd06dd7ed5ecb8bfc2405e00202424abd20d71
parent6c3418ea84f7743acdf32180bdddbe575280fa91 (diff)
downloadpint-39b130efa34d8e7cd5077564bff8a7e6ac1433c1.tar.gz
Indented the test...
-rw-r--r--pint/testsuite/test_issues.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/pint/testsuite/test_issues.py b/pint/testsuite/test_issues.py
index a2e757e..0cefce9 100644
--- a/pint/testsuite/test_issues.py
+++ b/pint/testsuite/test_issues.py
@@ -573,11 +573,11 @@ class TestIssuesNP(QuantityTestCase):
self.assertRaises(DimensionalityError, f, ureg.Quantity(1, 'm'))
def test_issue625a(self):
- try:
- from inspect import signature
- except ImportError:
- # Python2 does not have the inspect library. Import the backport.
- from funcsigs import signature
+ try:
+ from inspect import signature
+ except ImportError:
+ # Python2 does not have the inspect library. Import the backport.
+ from funcsigs import signature
ureg = UnitRegistry()
Q_ = ureg.Quantity
@@ -605,11 +605,11 @@ class TestIssuesNP(QuantityTestCase):
self.assertAlmostEqual(t2, Q_(3.508232077228117, 's'))
def test_issue625b(self):
- try:
- from inspect import signature
- except ImportError:
- # Python2 does not have the inspect library. Import the backport.
- from funcsigs import signature
+ try:
+ from inspect import signature
+ except ImportError:
+ # Python2 does not have the inspect library. Import the backport.
+ from funcsigs import signature
ureg = UnitRegistry()
Q_ = ureg.Quantity