From d45928c0c626ad6dce541599504f238f21f400e1 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Tue, 25 Jun 2024 13:58:18 +1000 Subject: [PATCH] fix: Oops! --- rust/pact_ffi/tests/tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/pact_ffi/tests/tests.rs b/rust/pact_ffi/tests/tests.rs index 5d631365..5265c8bc 100644 --- a/rust/pact_ffi/tests/tests.rs +++ b/rust/pact_ffi/tests/tests.rs @@ -693,8 +693,6 @@ fn pactffi_with_binary_file_feature_test(specification: PactSpecification, expec .header("Content-Type", "image/gif") .body(buffer) .send(); - - println!("pactffi_with_binary_file_feature_test v{}: {}", specification, mismatches); match result { Ok(res) => { let status = res.status(); @@ -710,6 +708,7 @@ fn pactffi_with_binary_file_feature_test(specification: PactSpecification, expec let mismatches = unsafe { CStr::from_ptr(pactffi_mock_server_mismatches(port)).to_string_lossy().into_owned() }; + println!("pactffi_with_binary_file_feature_test v{}: {}", specification, mismatches); pactffi_cleanup_mock_server(port);