From 8c5ce3ea486704fb9779838b57153fab41d3555c Mon Sep 17 00:00:00 2001 From: yuunlimm Date: Tue, 15 Oct 2024 16:09:25 -0700 Subject: [PATCH] fix integ test --- rust/integration-tests/src/diff_tests/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/integration-tests/src/diff_tests/mod.rs b/rust/integration-tests/src/diff_tests/mod.rs index 7f8175975..c23e9de7b 100644 --- a/rust/integration-tests/src/diff_tests/mod.rs +++ b/rust/integration-tests/src/diff_tests/mod.rs @@ -51,11 +51,11 @@ pub fn get_expected_imported_mainnet_txns( #[allow(dead_code)] pub fn get_expected_scripted_txns( processor_name: &str, - txn_name: &str, + txn_version: &str, table_name: &str, ) -> String { format!( "expected_db_output_files/scripted_txns/{}/{}/{}.json", - processor_name, txn_name, table_name + processor_name, txn_version, table_name ) }