diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-03-03 09:07:31 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-03-03 09:07:31 +0000 |
| commit | 0c368cfa5082bb40ba8591e3dae28c7099051bcf (patch) | |
| tree | 5a20de7b2e654f37dbaa2ac4bd109e3d2060770c /share | |
| parent | Fixed includes for tools. (diff) | |
| download | inkscape-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-x | share/extensions/test/hpgl_output.test.py | 4 |
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.' ) |
