Skip to content

Commit

Permalink
Remove icon name from --list tests
Browse files Browse the repository at this point in the history
  • Loading branch information
odyniec committed Jul 19, 2014
1 parent bec8042 commit 3a70711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_run.py
Expand Up @@ -44,7 +44,7 @@ def test_list(self):
sys.stdout = StringIO()

self.assertRaisesRegexp(SystemExit, '^0',
icon_font_to_png.run, ['foo.ttf', css_file.name, 'bar', '--list'])
icon_font_to_png.run, ['foo.ttf', css_file.name, '--list'])

out = sys.stdout.getvalue()
self.assertEqual(out,
Expand All @@ -56,7 +56,7 @@ def test_list(self):
sys.stdout = StringIO()

self.assertRaisesRegexp(SystemExit, '^0',
icon_font_to_png.run, ['foo.ttf', css_file.name, 'bar', '--list',
icon_font_to_png.run, ['foo.ttf', css_file.name, '--list',
'--keep-prefix'])

out = sys.stdout.getvalue()
Expand Down

0 comments on commit 3a70711

Please sign in to comment.