diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 00:42:39 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 00:42:39 +0000 |
commit | caceeb5c89b485c70ae11217d7f9786b0f51a769 (patch) | |
tree | 995f0bceabd67959f73b7e45b703c04681700b49 /tools/isolate/trace_inputs_test.py | |
parent | 2fb592d25aa2b4d6fd251f4416dcac75c4e1e7f2 (diff) | |
download | chromium_src-caceeb5c89b485c70ae11217d7f9786b0f51a769.zip chromium_src-caceeb5c89b485c70ae11217d7f9786b0f51a769.tar.gz chromium_src-caceeb5c89b485c70ae11217d7f9786b0f51a769.tar.bz2 |
Prepend "strace_" to process_quoted_argument to make it clear it's strace-specific.
Do not put it inside Strace.Context.Process class because it's really long and
would make the code harder to read.
Remove the extraneous local variable, it is not necessary.
R=cmp@chromium.org
NOTRY=true
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10779037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147148 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/isolate/trace_inputs_test.py')
-rwxr-xr-x | tools/isolate/trace_inputs_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/isolate/trace_inputs_test.py b/tools/isolate/trace_inputs_test.py index d9c8c15..a73c96f 100755 --- a/tools/isolate/trace_inputs_test.py +++ b/tools/isolate/trace_inputs_test.py @@ -36,7 +36,8 @@ class TraceInputs(unittest.TestCase): ), ) for actual, expected in test_cases: - self.assertEquals(expected, trace_inputs.process_quoted_arguments(actual)) + self.assertEquals( + expected, trace_inputs.strace_process_quoted_arguments(actual)) def test_process_escaped_arguments(self): test_cases = ( |