Skip to content

Commit 9dc5e7a

Browse files
committed
Minor test fix for python 2.5.
1 parent 95538d6 commit 9dc5e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def test_gssapi_simple(self):
6868
self.assertTrue(client.database_names())
6969
uri = ('mongodb://%s@%s:%d/?authMechanism=GSSAPI;replicaSet'
7070
'=%s' % (quote_plus(PRINCIPAL),
71-
GSSAPI_HOST, GSSAPI_PORT, set_name))
71+
GSSAPI_HOST, GSSAPI_PORT, str(set_name)))
7272
client = MongoReplicaSetClient(uri)
7373
self.assertTrue(client.database_names())
7474

0 commit comments

Comments
 (0)