Index: tests/gclient_smoketest.py |
diff --git a/tests/gclient_smoketest.py b/tests/gclient_smoketest.py |
index 093fded50720885a25f825a36f2e25fa37f35549..2ebbc335f1a63d96d9f2b5e86be551d2f3ef0a66 100755 |
--- a/tests/gclient_smoketest.py |
+++ b/tests/gclient_smoketest.py |
@@ -145,14 +145,6 @@ class GClientSmoke(GClientSmokeBase): |
self.check(res, self.gclient(['sync'])) |
self.check(res, self.gclient(['update'])) |
- def testWrongConfig(self): |
- # tested in testConfig. |
- self.gclient(['config', self.svn_base + 'trunk/src/']) |
- other_src = join(self.root_dir, 'src-other') |
- os.mkdir(other_src) |
- res = ('', 'Error: client not configured; see \'gclient config\'\n', 1) |
- self.check(res, self.gclient(['status'], other_src)) |
- |
def testConfig(self): |
p = join(self.root_dir, '.gclient') |
def test(cmd, expected): |