Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(884)

Issue 216044: Implement fixes requested in review http://codereview.chromium.org/215039 (Closed)

Created:
11 years, 3 months ago by M-A Ruel
Modified:
9 years, 7 months ago
Reviewers:
Nicolas Sylvain
CC:
chromium-reviews_googlegroups.com
Visibility:
Public.

Description

Implement fixes requested in review http://codereview.chromium.org/215039 TBR=nsylvain BUG=none TEST=none

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+4 lines, -5 lines) Patch
M tests/gclient_test.py View 3 chunks +4 lines, -5 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
M-A Ruel
11 years, 3 months ago (2009-09-22 13:36:20 UTC) #1
Nicolas Sylvain
11 years, 3 months ago (2009-09-22 14:03:56 UTC) #2
lg

On Tue, Sep 22, 2009 at 6:36 AM, <maruel@chromium.org> wrote:

> Reviewers: Nicolas Sylvain,
>
> Description:
> Implement fixes requested in review http://codereview.chromium.org/215039
>
> TBR=nsylvain
> BUG=none
> TEST=none
>
> Please review this at http://codereview.chromium.org/216044
>
> Affected files:
>  M tests/gclient_test.py
>
>
> Index: tests/gclient_test.py
> diff --git a/tests/gclient_test.py b/tests/gclient_test.py
> index
>
479add60b82a97f4202cd4dafccd51eecedfa4d4..aa341f3cb4f84923f7586350ad5b7320bc2e8479
> 100644
> --- a/tests/gclient_test.py
> +++ b/tests/gclient_test.py
> @@ -1092,8 +1092,8 @@ class SCMWrapperTestCase(GClientBaseTestCase):
>     base_path = os.path.join(self.root_dir, self.relpath)
>     gclient.os.path.isdir(base_path).AndReturn(True)
>     gclient_scm.CaptureSVNStatus(base_path).AndReturn([])
> -    gclient_scm.RunSVNAndGetFileList(['update', '--revision', 'BASE'],
> base_path,
> -                                     mox.IgnoreArg())
> +    gclient_scm.RunSVNAndGetFileList(['update', '--revision', 'BASE'],
> +                                     base_path, mox.IgnoreArg())
>
>     self.mox.ReplayAll()
>     scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
> @@ -1118,8 +1118,8 @@ class SCMWrapperTestCase(GClientBaseTestCase):
>     gclient_scm.os.path.exists(file_path2).AndReturn(True)
>     gclient_scm.os.path.isfile(file_path2).AndReturn(True)
>     gclient_scm.os.remove(file_path2)
> -    gclient_scm.RunSVNAndGetFileList(['update', '--revision', 'BASE'],
> base_path,
> -                                     mox.IgnoreArg())
> +    gclient_scm.RunSVNAndGetFileList(['update', '--revision', 'BASE'],
> +                                     base_path, mox.IgnoreArg())
>     print(os.path.join(base_path, 'a'))
>     print(os.path.join(base_path, 'b'))
>
> @@ -1142,7 +1142,6 @@ class SCMWrapperTestCase(GClientBaseTestCase):
>     gclient_scm.os.path.exists(file_path).AndReturn(True)
>     gclient_scm.os.path.isfile(file_path).AndReturn(False)
>     gclient_scm.os.path.isdir(file_path).AndReturn(True)
> -    #gclient_scm.os.remove(file_path)
>     gclient_utils.RemoveDirectory(file_path)
>     file_list1 = []
>     gclient_scm.RunSVNAndGetFileList(['update', '--revision', 'BASE'],
> base_path,
>
>
>

Powered by Google App Engine
This is Rietveld 408576698