From 3b758e941c0d6811fe62c2ace9f693e5843a3c51 Mon Sep 17 00:00:00 2001 From: Benjamin Wohlwend Date: Mon, 16 Jul 2018 12:54:00 +0200 Subject: [PATCH] fix naming of transaction store Signed-off-by: Benjamin Wohlwend --- tests/instrumentation/pyodbc_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/instrumentation/pyodbc_tests.py b/tests/instrumentation/pyodbc_tests.py index 01a2de3e5..8fd134339 100644 --- a/tests/instrumentation/pyodbc_tests.py +++ b/tests/instrumentation/pyodbc_tests.py @@ -45,7 +45,7 @@ def test_pyodbc_select(instrument, pyodbc_postgres_connection, elasticapm_client cursor.fetchall() elasticapm_client.end_transaction(None, "test-transaction") finally: - transactions = elasticapm_client.instrumentation_store.get_all() + transactions = elasticapm_client.transaction_store.get_all() spans = transactions[0]['spans'] span = spans[0] assert span['name'] == 'SELECT FROM test'