Skip to content

Commit 53fbc04

Browse files
Fix wav path
1 parent 30018a2 commit 53fbc04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tests/unit/test_audio_processing_module.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ TEST_F(AudioProcessingModuleTest, AGCAttenuatesLoudSpeech) {
802802
int num_channels = 0;
803803

804804
// TODO: figure out what generates this welcome.wav file such that this test isn't skipped
805-
std::string wav_path = std::string(LIVEKIT_ROOT_DIR) + "/data/welcome2.wav";
805+
std::string wav_path = std::string(LIVEKIT_ROOT_DIR) + "/data/welcome.wav";
806806
ASSERT_TRUE(readWavFile(wav_path, original_samples, sample_rate, num_channels)) << "Could not read " << wav_path;
807807

808808
std::cout << "[AGC-LoudSpeech] Loaded " << original_samples.size()

0 commit comments

Comments
 (0)