summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-03-03 09:07:31 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-03-03 09:07:31 +0000
commit0c368cfa5082bb40ba8591e3dae28c7099051bcf (patch)
tree5a20de7b2e654f37dbaa2ac4bd109e3d2060770c /share
parentFixed includes for tools. (diff)
downloadinkscape-0c368cfa5082bb40ba8591e3dae28c7099051bcf.tar.gz
inkscape-0c368cfa5082bb40ba8591e3dae28c7099051bcf.zip
Test. Fix for Bug #1286977 (trunk: make check fails (hpgl_output)).
Fixed bugs: - https://launchpad.net/bugs/1286977 (bzr r13098)
Diffstat (limited to 'share')
-rwxr-xr-xshare/extensions/test/hpgl_output.test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/extensions/test/hpgl_output.test.py b/share/extensions/test/hpgl_output.test.py
index 4d9500b1e..19fdeb661 100755
--- a/share/extensions/test/hpgl_output.test.py
+++ b/share/extensions/test/hpgl_output.test.py
@@ -12,13 +12,13 @@ sys.path.append('..') # this line allows to import the extension code
import unittest
from hpgl_output import *
-class MyEffectBasicTest(unittest.TestCase):
+class HPGLOuputBasicTest(unittest.TestCase):
#def setUp(self):
def test_run_without_parameters(self):
args = [ 'minimal-blank.svg' ]
- e = MyEffect()
+ e = HpglOutput()
e.affect( args, False )
#self.assertEqual( e.something, 'some value', 'A commentary about that.' )