Skip to content

Commit a08b484

Browse files
authored
chore(ci): unblock spellcheck ci (#3051)
## Linked Issues/PRs <!-- List of related issues/PRs --> - none ## Description <!-- List of detailed changes --> CI is blocked on open PRs because of this ## Checklist - [ ] Breaking changes are clearly marked as such in the PR description and changelog - [ ] New behavior is reflected in tests - [ ] [The specification](https://github.com/FuelLabs/fuel-specs/) matches the implemented behavior (link update PR if changes are needed) ### Before requesting review - [ ] I have reviewed the code myself - [ ] I have created follow-up issues caused by this PR and linked them here ### After merging, notify other teams [Add or remove entries as needed] - [ ] [Rust SDK](https://github.com/FuelLabs/fuels-rs/) - [ ] [Sway compiler](https://github.com/FuelLabs/sway/) - [ ] [Platform documentation](https://github.com/FuelLabs/devrel-requests/issues/new?assignees=&labels=new+request&projects=&template=NEW-REQUEST.yml&title=%5BRequest%5D%3A+) (for out-of-organization contributors, the person merging the PR will do this) - [ ] Someone else?
1 parent cee716f commit a08b484

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/services/consensus_module/poa/src/pre_confirmation_signature_service

crates/services/consensus_module/poa/src/pre_confirmation_signature_service/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ async fn run__received_empty_tx_will_not_be_broadcasted() {
510510
let mut state_watcher = StateWatcher::started();
511511

512512
// when
513-
let empyt_txs = vec![];
513+
let empty_txs = vec![];
514514

515515
tokio::task::spawn(async move {
516516
// run it on repeat so the receiver isn't dropped
@@ -521,7 +521,7 @@ async fn run__received_empty_tx_will_not_be_broadcasted() {
521521

522522
handles
523523
.tx_sender_handle
524-
.send(empyt_txs.clone())
524+
.send(empty_txs.clone())
525525
.await
526526
.expect("Failed to send txs");
527527

0 commit comments

Comments
 (0)