Rev 4004: PEP8ification of selftest_kwargs in cmd_selftest. in http://people.ubuntu.com/~robertc/baz2.0/test-result-registry
Robert Collins
robertc at robertcollins.net
Thu Feb 12 05:43:34 GMT 2009
At http://people.ubuntu.com/~robertc/baz2.0/test-result-registry
------------------------------------------------------------
revno: 4004
revision-id: robertc at robertcollins.net-20090212054329-ubctdgf2d39lltbx
parent: robertc at robertcollins.net-20090211234655-zbnw36me1zfzorv0
committer: Robert Collins <robertc at robertcollins.net>
branch nick: test-result-registry
timestamp: Thu 2009-02-12 16:43:29 +1100
message:
PEP8ification of selftest_kwargs in cmd_selftest.
=== modified file 'bzrlib/builtins.py'
--- a/bzrlib/builtins.py 2009-02-11 23:46:55 +0000
+++ b/bzrlib/builtins.py 2009-02-12 05:43:29 +0000
@@ -2953,21 +2953,21 @@
test_suite_factory = None
benchfile = None
try:
- selftest_kwargs = {"verbose":verbose,
- "pattern":pattern,
- "stop_on_failure":one,
- "transport":transport,
- "test_suite_factory":test_suite_factory,
- "lsprof_timed":lsprof_timed,
- "bench_history":benchfile,
- "matching_tests_first":first,
- "list_only":list_only,
- "random_seed":randomize,
- "exclude_pattern":exclude,
- "strict":strict,
- "load_list":load_list,
- "debug_flags":debugflag,
- "starting_with":starting_with
+ selftest_kwargs = {"verbose": verbose,
+ "pattern": pattern,
+ "stop_on_failure": one,
+ "transport": transport,
+ "test_suite_factory": test_suite_factory,
+ "lsprof_timed": lsprof_timed,
+ "bench_history": benchfile,
+ "matching_tests_first": first,
+ "list_only": list_only,
+ "random_seed": randomize,
+ "exclude_pattern": exclude,
+ "strict": strict,
+ "load_list": load_list,
+ "debug_flags": debugflag,
+ "starting_with": starting_with
}
selftest_kwargs.update(self.additional_selftest_args)
result = selftest(**selftest_kwargs)
More information about the bazaar-commits
mailing list