summaryrefslogtreecommitdiff
path: root/test/test_arcs.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-02 07:27:14 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-02 07:27:14 -0500
commit968fc008e4c0453ef05aa211e85e202e7b1d2342 (patch)
tree91ae38367181a9ee0dda9ed22aa832031ca4c3d7 /test/test_arcs.py
parent007a4a1ba529e2913357387c1f42b6028860fe98 (diff)
downloadpython-coveragepy-git-968fc008e4c0453ef05aa211e85e202e7b1d2342.tar.gz
Massive eol whitespace clean-up.
Diffstat (limited to 'test/test_arcs.py')
-rw-r--r--test/test_arcs.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_arcs.py b/test/test_arcs.py
index 47a69987..45ab27e8 100644
--- a/test/test_arcs.py
+++ b/test/test_arcs.py
@@ -25,7 +25,7 @@ class SimpleArcTest(CoverageTest):
a = 2
b = 3
-
+
c = 5
""",
arcz=".2 23 35 5.")
@@ -34,7 +34,7 @@ class SimpleArcTest(CoverageTest):
self.check_coverage("""\
def foo():
a = 2
-
+
foo()
""",
arcz=".1 .2 14 2. 4.")
@@ -54,7 +54,7 @@ class SimpleArcTest(CoverageTest):
assert a == 1
""",
arcz=".1 12 23 24 34 4.", arcz_missing="23 34")
-
+
def test_if_else(self):
self.check_coverage("""\
if len([]) == 0:
@@ -139,7 +139,7 @@ class SimpleArcTest(CoverageTest):
class LoopArcTest(CoverageTest):
"""Arc-measuring tests involving loops."""
-
+
def test_loop(self):
self.check_coverage("""\
for i in range(10):