From 7561c34f6c29d0ba098d621228f6b5e4f4e3024b Mon Sep 17 00:00:00 2001 From: Felix Crux Date: Fri, 22 Jan 2010 21:52:38 -0800 Subject: [PATCH] Minor whitespace cleanup. --- tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests.py b/tests.py index 852fa14..90c27e4 100755 --- a/tests.py +++ b/tests.py @@ -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 @@ -14,7 +14,6 @@ class ParseBoundsTest(unittest.TestCase): - def testUnspacedItems(self): self.assertEqual(pdfmunge.parse_bounds("2,3,4,5"), [2, 3, 4, 5]) @@ -23,7 +22,6 @@ def testSpacedItems(self): class ParseRangeTest(unittest.TestCase): - def testSingleItem(self): self.assertEqual(pdfmunge.parse_range("1"), [0]) @@ -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': [],