Skip to content

Commit

Permalink
chore: fix typos reported by the latest typo check (#10906)
Browse files Browse the repository at this point in the history
Signed-off-by: MrCroxx <mrcroxx@outlook.com>
  • Loading branch information
MrCroxx authored Jul 12, 2023
1 parent 05d7986 commit ed5b9e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/tests/compaction_test/src/compaction_test_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -652,11 +652,11 @@ async fn open_hummock_iters(
pub async fn check_compaction_results(
version_id: u64,
mut expect_results: BTreeMap<HummockEpoch, StateStoreIterType>,
mut actual_resutls: BTreeMap<HummockEpoch, StateStoreIterType>,
mut actual_results: BTreeMap<HummockEpoch, StateStoreIterType>,
) -> anyhow::Result<()> {
let combined = expect_results
.iter_mut()
.zip_eq_fast(actual_resutls.iter_mut());
.zip_eq_fast(actual_results.iter_mut());
for ((e1, expect_iter), (e2, actual_iter)) in combined {
assert_eq!(e1, e2);
tracing::info!(
Expand Down
2 changes: 1 addition & 1 deletion src/tests/state_cleaning_test/data/agg.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[[test]]
name = "window_hash_agg"
# Prepare the tesing table & mviews.
# Prepare the testing table & mviews.
init_sqls = [
# Set up the base table.
"""
Expand Down

0 comments on commit ed5b9e0

Please sign in to comment.