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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py

Issue 2691343007: Fix assert statement in Git.unstaged_changes. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
index b2a54f112f8d63a3774ecb4e138645f5bcf5c076..69eaa40ae9fbabded630097cc7b8fed2a87f484e 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git_unittest.py
@@ -231,6 +231,7 @@ class GitTestWithMock(unittest.TestCase):
' M d/modified.txt',
' D d/deleted.txt',
'?? d/untracked.txt',
+ '?? a',
'D d/deleted.txt',
'M d/modified-staged.txt',
'A d/added-staged.txt',
@@ -243,4 +244,5 @@ class GitTestWithMock(unittest.TestCase):
'd/modified.txt': 'M',
'd/deleted.txt': 'D',
'd/untracked.txt': '?',
+ 'a': '?',
})
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/git.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698