From 89df8e5c8a3f4a54a2d1cca6fd6286069d12d1c1 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 6 Sep 2015 16:49:29 -0400 Subject: [PATCH] Test: Corrected test, which assumed zero-based annotation indexing --- test/dom.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dom.t b/test/dom.t index 4517152d6..ec9432a6c 100755 --- a/test/dom.t +++ b/test/dom.t @@ -309,7 +309,7 @@ class TestDOMDirectReferencesOnAddition(TestCase): def test_dom_reference_annotation(self): """ DOM reference on annotation description in add command """ - self.t("add description:1.annotations.1.description") + self.t("add description:1.annotations.2.description") latest = self.t.latest self.assertEqual("Second annotation", latest['description'])