Skip to content

Commit

Permalink
chore: fix failing test for StoreNotFound (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
cprice404 authored Jul 3, 2024
1 parent 08f7828 commit e5990de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/tests/storage/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mod create_delete_list_store {
let client = &CACHE_TEST_STATE.storage_client;
let store_name = unique_store_name();
let result = client.delete_store(store_name).await.unwrap_err();
assert_eq!(result.error_code, MomentoErrorCode::CacheNotFoundError);
assert_eq!(result.error_code, MomentoErrorCode::StoreNotFoundError);
Ok(())
}

Expand Down

0 comments on commit e5990de

Please sign in to comment.