diff options
author | Ian Bull <irbull@gmail.com> | 2024-09-04 00:23:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 09:23:19 +0200 |
commit | cb454351d497a4387775f3c9d64114cb8b32c08d (patch) | |
tree | 252e1dc84de3d3048ae3d98f4713cbdb436c5226 /tests/ffi | |
parent | 1ec911f1734b5e7190cc65876c5f03011e592d7e (diff) |
refactor(ext): align error messages (#25310)
Diffstat (limited to 'tests/ffi')
-rw-r--r-- | tests/ffi/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ffi/tests/integration_tests.rs b/tests/ffi/tests/integration_tests.rs index 2235405a8..c84a1b820 100644 --- a/tests/ffi/tests/integration_tests.rs +++ b/tests/ffi/tests/integration_tests.rs @@ -300,6 +300,6 @@ fn ffi_callback_errors_test() { assert_eq!(stdout, expected); assert_eq!( stderr, - "Illegal unhandled exception in nonblocking callback.\n".repeat(3) + "Illegal unhandled exception in nonblocking callback\n".repeat(3) ); } |