chore: fix typo in an error message

pull/24376/head
Jake Goulding 2021-02-12 12:55:55 -05:00 committed by Carol (Nichols || Goulding)
parent 536c1724bd
commit 484adcc257
1 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ mod tests {
(false, false, true) => {
panic!(
"TEST_INTEGRATION is set, \
but AZURE_STROAGE_ACCOUNT and AZURE_STORAGE_CONTAINER are not"
but AZURE_STORAGE_ACCOUNT and AZURE_STORAGE_CONTAINER are not"
)
}
(false, true, true) => {
@ -267,7 +267,7 @@ mod tests {
(false, false, false) => {
eprintln!(
"skipping integration test - set \
AZURE_STROAGE_ACCOUNT and AZURE_STORAGE_CONTAINER to run"
AZURE_STORAGE_ACCOUNT and AZURE_STORAGE_CONTAINER to run"
);
return Ok(());
}