Index: tests/gclient_test.py |
diff --git a/tests/gclient_test.py b/tests/gclient_test.py |
index 1245812ae84f02b46f6e0dea67899387e1e55068..65dd7327e906ab180caabe9f6b8f07ae9b3f1bfe 100755 |
--- a/tests/gclient_test.py |
+++ b/tests/gclient_test.py |
@@ -216,7 +216,7 @@ class GclientTest(trial_dir.TestCase): |
# Invalid urls causes pain when specifying requirements. Make sure it's |
# auto-fixed. |
d = gclient.Dependency( |
- None, 'name', 'proto://host/path/@revision', None, None, None, |
+ None, 'name', 'proto://host/path/@revision', None, None, None, None, |
None, '', True) |
self.assertEquals('proto://host/path@revision', d.url) |
@@ -227,23 +227,23 @@ class GclientTest(trial_dir.TestCase): |
obj.add_dependencies_and_close( |
[ |
gclient.Dependency( |
- obj, 'foo', 'url', None, None, None, None, 'DEPS', True), |
+ obj, 'foo', 'url', None, None, None, None, None, 'DEPS', True), |
gclient.Dependency( |
- obj, 'bar', 'url', None, None, None, None, 'DEPS', True), |
+ obj, 'bar', 'url', None, None, None, None, None, 'DEPS', True), |
], |
[]) |
obj.dependencies[0].add_dependencies_and_close( |
[ |
gclient.Dependency( |
- obj.dependencies[0], 'foo/dir1', 'url', None, None, None, |
+ obj.dependencies[0], 'foo/dir1', 'url', None, None, None, None, |
None, 'DEPS', True), |
gclient.Dependency( |
obj.dependencies[0], 'foo/dir2', |
- gclient.GClientKeywords.FromImpl('bar'), None, None, None, |
+ gclient.GClientKeywords.FromImpl('bar'), None, None, None, None, |
None, 'DEPS', True), |
gclient.Dependency( |
obj.dependencies[0], 'foo/dir3', |
- gclient.GClientKeywords.FileImpl('url'), None, None, None, |
+ gclient.GClientKeywords.FileImpl('url'), None, None, None, None, |
None, 'DEPS', True), |
], |
[]) |
@@ -564,7 +564,7 @@ class GclientTest(trial_dir.TestCase): |
"""Verifies expected behavior of LateOverride.""" |
url = "git@github.com:dart-lang/spark.git" |
d = gclient.Dependency(None, 'name', 'url', |
- None, None, None, None, '', True) |
+ None, None, None, None, None, '', True) |
late_url = d.LateOverride(url) |
self.assertEquals(url, late_url) |