Skip to content

Commit b42374c

Browse files
committed
chore(cubestore): Upgrade DF: fix divide by zero error message
1 parent faf7d75 commit b42374c

File tree

1 file changed

+3
-1
lines changed
  • rust/cubestore/cubestore-sql-tests/src

1 file changed

+3
-1
lines changed

rust/cubestore/cubestore-sql-tests/src/tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6281,7 +6281,9 @@ async fn divide_by_zero(service: Box<dyn SqlClient>) {
62816281
.unwrap();
62826282
assert_eq!(
62836283
r.elide_backtrace(),
6284-
CubeError::internal("Execution error: Internal: Arrow error: External error: Arrow error: Divide by zero error".to_string())
6284+
CubeError::internal(
6285+
"Execution error: Internal: Arrow error: Divide by zero error".to_string()
6286+
)
62856287
);
62866288
}
62876289

0 commit comments

Comments
 (0)