Skip to content

Commit dcffc16

Browse files
committed
Fix test
Signed-off-by: Xuanwo <[email protected]>
1 parent d4e1dce commit dcffc16

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/src/layers/correctness_check.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ mod tests {
466466
assert!(res.is_err());
467467
assert_eq!(
468468
res.unwrap_err().to_string(),
469-
"Unsupported (permanent) at write => service memory doesn't support operation write with args if_none_match"
469+
"Unsupported (permanent) at write => The service memory does not support the operation write with the arguments if_none_match. Please verify if the relevant flags have been enabled, or submit an issue if you believe this is incorrect."
470470
);
471471

472472
// Now try a wildcard if-none-match
@@ -477,8 +477,7 @@ mod tests {
477477
assert!(res.is_err());
478478
assert_eq!(
479479
res.unwrap_err().to_string(),
480-
"Unsupported (permanent) at write, context: { hint: use if_not_exists instead } => \
481-
service memory doesn't support operation write with args if_none_match"
480+
"Unsupported (permanent) at write, context: { hint: use if_not_exists instead } => The service memory does not support the operation write with the arguments if_none_match. Please verify if the relevant flags have been enabled, or submit an issue if you believe this is incorrect."
482481
);
483482

484483
let res = op

0 commit comments

Comments
 (0)