summaryrefslogtreecommitdiff
path: root/lib/ldb/tests
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ldb/tests')
-rwxr-xr-xlib/ldb/tests/python/api.py2
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")