Skip to content

Commit

Permalink
and more
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Oct 24, 2019
1 parent 28a23c8 commit 9a358b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qt_dotgraph/test/pygraphviz_factory_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ def test_create_dot(self):
'label="edge"',
'foo -> "edge"']
result = fac.create_dot(g)
# get rid of version specific whitespaces
# get rid of version specific quotes / whitespaces
result = re.sub('""', ' ', result)
result = re.sub('[\n\t ]+', ' ', result)
for sn in snippets:
self.assertTrue(sn in result, '%s \nmissing in\n %s' % (sn, result))

0 comments on commit 9a358b5

Please sign in to comment.