From 07ce3a761a3178b1194a8a662c0d2be0170032d6 Mon Sep 17 00:00:00 2001 From: Anthony Mahanna Date: Thu, 15 Aug 2024 21:26:26 -0400 Subject: [PATCH] fix: remove 1 --- tests/test_adapter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_adapter.py b/tests/test_adapter.py index fe92a48..e4e045c 100644 --- a/tests/test_adapter.py +++ b/tests/test_adapter.py @@ -493,7 +493,7 @@ def assert_arangodb_data( has_one_vcol = len(adb_v_cols) == 1 has_one_ecol = len(adb_e_cols) == 1 - for i, (nx_id, nx_node) in enumerate(nx_g.nodes(data=True), 1): + for i, (nx_id, nx_node) in enumerate(nx_g.nodes(data=True)): col = ( adb_v_cols[0] if has_one_vcol