Skip to content

Commit 7909d9c

Browse files
committed
fix naming of transaction store (#258)
closes #258 Signed-off-by: Benjamin Wohlwend <[email protected]>
1 parent e07782f commit 7909d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/instrumentation/pyodbc_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def test_pyodbc_select(instrument, pyodbc_postgres_connection, elasticapm_client
4545
cursor.fetchall()
4646
elasticapm_client.end_transaction(None, "test-transaction")
4747
finally:
48-
transactions = elasticapm_client.instrumentation_store.get_all()
48+
transactions = elasticapm_client.transaction_store.get_all()
4949
spans = transactions[0]['spans']
5050
span = spans[0]
5151
assert span['name'] == 'SELECT FROM test'

0 commit comments

Comments
 (0)