Skip to content

Commit

Permalink
Minor whitespace cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixc committed Jan 23, 2010
1 parent ea5bf16 commit 7561c34
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests.py
Expand Up @@ -3,9 +3,9 @@
"""
Test cases for pdfmunge.
Copyright (c) 2009, 2010 Felix Crux (www.felixcrux.com)
Available under the MIT License (see Readme).
"""

import unittest
Expand All @@ -14,7 +14,6 @@


class ParseBoundsTest(unittest.TestCase):

def testUnspacedItems(self):
self.assertEqual(pdfmunge.parse_bounds("2,3,4,5"), [2, 3, 4, 5])

Expand All @@ -23,7 +22,6 @@ def testSpacedItems(self):


class ParseRangeTest(unittest.TestCase):

def testSingleItem(self):
self.assertEqual(pdfmunge.parse_range("1"), [0])

Expand All @@ -39,7 +37,6 @@ def testCombinedItems(self):


class HandleOptionsTest(unittest.TestCase):

def testDefaults(self):
self.assertEqual(pdfmunge.handle_options(["infile", "outfile"]),
{'rotate': False, 'exclude': [], 'intact': [],
Expand Down

0 comments on commit 7561c34

Please sign in to comment.