From 47ebac0276c49bfe825e7045d511ad79b41d350c Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Fri, 27 Jun 2014 11:59:35 +0100 Subject: [PATCH] Add authentication_source option to register_connection #178 #464 #573 #580 #590 --- docs/changelog.rst | 1 + tests/test_connection.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 38d46828..c4f9ec23 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,7 @@ Changelog Changes in 0.9.X - DEV ====================== +- Add authentication_source option to register_connection #178 #464 #573 #580 #590 - Implemented equality between Documents and DBRefs #597 - Fixed ReferenceField inside nested ListFields dereferencing problem #368 - Added the ability to reload specific document fields #100 diff --git a/tests/test_connection.py b/tests/test_connection.py index a5b1b089..6cdbd654 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -48,7 +48,7 @@ class ConnectionTest(unittest.TestCase): connect('mongoenginetest', alias='testdb2') actual_connection = get_connection('testdb2') - self.assertIs(expected_connection, actual_connection) + self.assertEqual(expected_connection, actual_connection) def test_connect_uri(self): """Ensure that the connect() method works properly with uri's