Skip to content

Commit 2692866

Browse files
Remove TODO/add context if file fails to read
1 parent 6a4119d commit 2692866

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/tests/unit/test_audio_processing_module.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -801,9 +801,8 @@ TEST_F(AudioProcessingModuleTest, AGCAttenuatesLoudSpeech) {
801801
int sample_rate = 0;
802802
int num_channels = 0;
803803

804-
// TODO: figure out what generates this welcome.wav file such that this test isn't skipped
805804
std::string wav_path = std::string(LIVEKIT_ROOT_DIR) + "/data/welcome.wav";
806-
ASSERT_TRUE(readWavFile(wav_path, original_samples, sample_rate, num_channels)) << "Could not read " << wav_path;
805+
ASSERT_TRUE(readWavFile(wav_path, original_samples, sample_rate, num_channels)) << "Could not read " << wav_path << " (is Git LFS pulled?)";
807806

808807
std::cout << "[AGC-LoudSpeech] Loaded " << original_samples.size()
809808
<< " samples, " << sample_rate << " Hz, " << num_channels

0 commit comments

Comments
 (0)