Commit fccaedc3 authored by Stefan Behnel's avatar Stefan Behnel

Reformat code for readability.

parent f688b4d8
...@@ -647,7 +647,7 @@ class TestBuilder(object): ...@@ -647,7 +647,7 @@ class TestBuilder(object):
if sys.platform not in ['win32'] and self.add_embedded_test: if sys.platform not in ['win32'] and self.add_embedded_test:
# Non-Windows makefile. # Non-Windows makefile.
if [1 for selector in self.selectors if selector("embedded")] \ if [1 for selector in self.selectors if selector("embedded")] \
and not [1 for selector in self.exclude_selectors if selector("embedded")]: and not [1 for selector in self.exclude_selectors if selector("embedded")]:
suite.addTest(unittest.makeSuite(EmbedTest)) suite.addTest(unittest.makeSuite(EmbedTest))
return suite return suite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment