mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-13 13:53:07 +00:00
test_web.test_welcome: give the rooturl a trailing slash, otherwise older versions of twisted complain
This commit is contained in:
parent
11792759e6
commit
2d06a66ec1
@ -295,7 +295,13 @@ class Web(unittest.TestCase):
|
||||
pass
|
||||
|
||||
def test_welcome(self): # YES
|
||||
d = self.GET("")
|
||||
d = self.GET("/")
|
||||
def _check(res):
|
||||
self.failUnless('Welcome To AllMyData' in res)
|
||||
self.failUnless('Tahoe' in res)
|
||||
self.failUnless('To view the global shared filestore' in res)
|
||||
self.failUnless('To view your personal private non-shared' in res)
|
||||
d.addCallback(_check)
|
||||
return d
|
||||
|
||||
def test_GET_FILEURL(self): # YES
|
||||
|
Loading…
x
Reference in New Issue
Block a user