Skip to content

Commit 69b7497

Browse files
Fix formatting error found in Rust CI
1 parent 686c920 commit 69b7497

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

samples/js/live-audio-transcription/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ console.log();
1515
// Initialize the Foundry Local SDK
1616
console.log('Initializing Foundry Local SDK...');
1717
const manager = FoundryLocalManager.create({
18-
appName: 'foundry',
18+
appName: 'foundry_local_samples',
1919
logLevel: 'info'
2020
});
2121
console.log('✓ SDK initialized');

sdk/rust/tests/integration/live_audio_test.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ async fn live_streaming_e2e_with_synthetic_pcm_returns_valid_response() {
5959
}
6060

6161
// Start collecting results in background (must start before pushing audio)
62-
let mut stream = session
63-
.get_stream()
64-
.await
65-
.expect("get_stream failed");
62+
let mut stream = session.get_stream().await.expect("get_stream failed");
6663

6764
let results = Arc::new(tokio::sync::Mutex::new(Vec::new()));
6865
let stream_error: Arc<tokio::sync::Mutex<Option<String>>> =

0 commit comments

Comments
 (0)