From f1534593dd537692eae7c83a8b136ef9eb600b99 Mon Sep 17 00:00:00 2001 From: Dario Ernst Date: Mon, 19 Oct 2020 18:22:14 +0200 Subject: [PATCH] Fix flaky test that failed ~50% of the time --- tests/tests_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_common.py b/tests/tests_common.py index edab1aa01..5404b7eee 100644 --- a/tests/tests_common.py +++ b/tests/tests_common.py @@ -465,7 +465,7 @@ def test_add_find_node_(self): def test_node_path(self): objects = self.opc.get_objects_node() - o = objects.add_object('ns=2;i=105;', '2:NodePathObject') + o = objects.add_object('ns=2;i=1005;', '2:NodePathObject') root = self.opc.get_root_node() o2 = root.get_child(['0:Objects', '2:NodePathObject']) self.assertEqual(o, o2)