diff options
Diffstat (limited to 'lib/ldb/tests')
-rwxr-xr-x | lib/ldb/tests/python/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb/tests/python/api.py b/lib/ldb/tests/python/api.py index 7cd8f0364e..d04d0cc5ed 100755 --- a/lib/ldb/tests/python/api.py +++ b/lib/ldb/tests/python/api.py @@ -414,7 +414,7 @@ class DnTests(TestCase): def test_add(self): x = ldb.Dn(self.ldb, "dc=foo24") y = ldb.Dn(self.ldb, "bar=bla") - self.assertEquals("dc=foo24,bar=bla", str(y + x)) + self.assertEquals("dc=foo24,bar=bla", str(x + y)) def test_parse_ldif(self): msgs = self.ldb.parse_ldif("dn: foo=bar\n") |