summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/gvfs-test4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gvfs-test b/test/gvfs-test
index 11fc0350..1bf29d68 100755
--- a/test/gvfs-test
+++ b/test/gvfs-test
@@ -839,7 +839,7 @@ ncalrpc dir = %(workdir)s/samba
def test_anonymous(self):
'''smb:// anonymous'''
- uri = 'smb://%s/public' % os.uname()[1]
+ uri = 'smb://%s:%d/public' % (os.uname()[1], SMB_USER_PORT)
# ensure that this does not ask for any credentials
mount = subprocess.Popen(['gio', 'mount', '-a', uri])
@@ -860,7 +860,7 @@ ncalrpc dir = %(workdir)s/samba
def test_authenticated(self):
'''smb:// authenticated'''
- uri = 'smb://%s@%s/private' % (os.environ['USER'], os.uname()[1])
+ uri = 'smb://%s@%s:%d/private' % (os.environ['USER'], os.uname()[1], SMB_USER_PORT)
mount = subprocess.Popen(['gio', 'mount', uri],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,