Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
subalterngames committed May 29, 2024
1 parent e262cff commit 447b45b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test_dockerfiles/arch_linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM archlinux:latest

ENV PATH="/root/.cargo/bin:${PATH}"

RUN mkdir cacophony
MKDIR cacophony

WORKDIR $HOME/cacophony

Expand Down
6 changes: 3 additions & 3 deletions text/src/tts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,15 +258,15 @@ fn on_utterance_end(_: UtteranceId) {

#[cfg(test)]
mod tests {
use common::get_test_config;
use crate::Enqueable;
use common::get_test_config;

use super::TTS;

#[test]
fn test_tts() {
const TTS_STRING: &str = "Hello world!";

let config = get_test_config();
let mut tts = TTS::new(&config);
assert!(tts.tts.is_some());
Expand All @@ -279,4 +279,4 @@ mod tests {
tts.stop();
tts.update();
}
}
}

0 comments on commit 447b45b

Please sign in to comment.