chore: clippy warnings
This commit is contained in:
parent
45c1583837
commit
b60b63a682
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue