summaryrefslogtreecommitdiff
path: root/tests/test_option.py
diff options
context:
space:
mode:
authorSimon Feltman <sfeltman@src.gnome.org>2014-05-02 21:36:25 -0700
committerSimon Feltman <sfeltman@src.gnome.org>2014-05-02 21:37:28 -0700
commit833f96807037e85445ac103d6fb6ad9c4fab65e4 (patch)
treefdc576ea108110980a587f02033c80d95ef33ca7 /tests/test_option.py
parent07af141dd8dcac551cb2e962f6bf338b3485006b (diff)
downloadpygobject-833f96807037e85445ac103d6fb6ad9c4fab65e4.tar.gz
PEP8 fixes
Use infix 'not' instead of prefixed. Don't use double comments (##). Use space between comment and text. Un-comment tests that now work. Move broken (and won't fix) implicit int64 signal tests into a new skipped test function.
Diffstat (limited to 'tests/test_option.py')
-rw-r--r--tests/test_option.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_option.py b/tests/test_option.py
index 2900edd2..fe257464 100644
--- a/tests/test_option.py
+++ b/tests/test_option.py
@@ -71,7 +71,7 @@ class TestOption(unittest.TestCase):
def test_parse_args_double_dash(self):
options, args = self.parser.parse_args(
["test_option.py", "--", "-xxx"])
- #self.assertEqual(args, ["-xxx"])
+ # self.assertEqual(args, ["-xxx"])
def test_parse_args_group(self):
group = self._create_group()