From 3eb86a20f0b20e44b34087c16e20ff40cead7420 Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Mon, 22 Feb 2010 22:53:55 -0500 Subject: Changes path of html output to be written into current dir rather than a tmp dir. No need to create the tmp dir on first run. --- tests/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/plugins.py') diff --git a/tests/plugins.py b/tests/plugins.py index acd1eaf..6e72024 100644 --- a/tests/plugins.py +++ b/tests/plugins.py @@ -81,7 +81,7 @@ or "")) else: self.html.append('OK') self.html.append('') - f = open('tmp/test-output.html', 'w') + f = open('test-output.html', 'w') for l in self.html: f.write(l) f.close() -- cgit v1.2.3