chore: clippy warnings

This commit is contained in:
Bartosz Sypytkowski 2024-10-28 14:27:07 +01:00
parent 45c1583837
commit b60b63a682
2 changed files with 3 additions and 4 deletions

View File

@ -53,7 +53,7 @@ then
cargo sqlx prepare --workspace
fi
cargo run --package xtask
cargo run --release --package xtask
# revert to require signup email verification
export GOTRUE_MAILER_AUTOCONFIRM=false

View File

@ -1,4 +1,4 @@
use std::time::{Duration, Instant};
use std::time::Duration;
use anyhow::Context;
use collab::core::origin::CollabOrigin;
@ -158,7 +158,6 @@ impl TestScenario {
let collab = lock.borrow();
let txn = collab.context.transact();
let txt: TextRef = collab.data.get_with_txn(&txn, "text-id").unwrap();
let actual = txt.get_string(&txn);
actual
txt.get_string(&txn)
}
}