From: dpranke@chromium.org Date: Wed, 19 Jan 2011 22:04:19 +0000 (+0000) Subject: 2011-01-19 Dirk Pranke X-Git-Url: https://git.webkit.org/?p=WebKit.git;a=commitdiff_plain;h=a3a402b777ee4eff529d98a54252fd8dc3032511 2011-01-19 Dirk Pranke Unreviewed, build fix. Fix test failure caused by committing attachment 79368 instead of attachment 79461 on bug 52604. * Scripts/webkitpy/common/system/filesystem_mock.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76158 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 86c689fc0a0f..977426bcba11 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,12 @@ +2011-01-19 Dirk Pranke + + Unreviewed, build fix. + + Fix test failure caused by committing attachment 79368 instead + of attachment 79461 on bug 52604. + + * Scripts/webkitpy/common/system/filesystem_mock.py: + 2011-01-19 Dirk Pranke Reviewed by Mihai Parparita. diff --git a/Tools/Scripts/webkitpy/common/system/filesystem_mock.py b/Tools/Scripts/webkitpy/common/system/filesystem_mock.py index 096fdf7bbfc3..88c18e8ca586 100644 --- a/Tools/Scripts/webkitpy/common/system/filesystem_mock.py +++ b/Tools/Scripts/webkitpy/common/system/filesystem_mock.py @@ -52,7 +52,7 @@ class MockFileSystem(object): idx = path.rfind('/') return (path[0:idx], path[idx + 1:]) - def basename(self): + def basename(self, path): return self._split(path)[1] def copyfile(self, source, destination):