summaryrefslogtreecommitdiff
path: root/tests/test_basic_api.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2008-11-25 21:46:31 +0100
committergbrandl <devnull@localhost>2008-11-25 21:46:31 +0100
commitfcfeeb36e6c4df0cb6b51794be6e5d433f1e5fd9 (patch)
tree41d045a1fa662d8b07f815daf313fc1ebd739220 /tests/test_basic_api.py
parentac3e3693639ef5b76b94c7b99f45e053a285c039 (diff)
downloadpygments-fcfeeb36e6c4df0cb6b51794be6e5d433f1e5fd9.tar.gz
file() -> open() in tests.
Diffstat (limited to 'tests/test_basic_api.py')
-rw-r--r--tests/test_basic_api.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_basic_api.py b/tests/test_basic_api.py
index 4126279c..429e0823 100644
--- a/tests/test_basic_api.py
+++ b/tests/test_basic_api.py
@@ -94,7 +94,7 @@ class FiltersTest(unittest.TestCase):
for x in filters.FILTERS.keys():
lx = lexers.PythonLexer()
lx.add_filter(x, **filter_args.get(x, {}))
- text = file(TESTFILE).read().decode('utf-8')
+ text = open(TESTFILE).read().decode('utf-8')
tokens = list(lx.get_tokens(text))
roundtext = ''.join([t[1] for t in tokens])
if x not in ('whitespace', 'keywordcase'):
@@ -110,14 +110,14 @@ class FiltersTest(unittest.TestCase):
def test_whitespace(self):
lx = lexers.PythonLexer()
lx.add_filter('whitespace', spaces='%')
- text = file(TESTFILE).read().decode('utf-8')
+ text = open(TESTFILE).read().decode('utf-8')
lxtext = ''.join([t[1] for t in list(lx.get_tokens(text))])
self.failIf(' ' in lxtext)
def test_keywordcase(self):
lx = lexers.PythonLexer()
lx.add_filter('keywordcase', case='capitalize')
- text = file(TESTFILE).read().decode('utf-8')
+ text = open(TESTFILE).read().decode('utf-8')
lxtext = ''.join([t[1] for t in list(lx.get_tokens(text))])
self.assert_('Def' in lxtext and 'Class' in lxtext)