Skip to content

Commit 315774d

Browse files
committed
Fix tests
1 parent 5f8cfcf commit 315774d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/yup_audio_formats/yup_AppleCoreAudioFormat.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ TEST_F (AppleCoreAudioFormatTests, GetPossibleBitDepthsAndSampleRates)
9595
Array<int> bitDepths = format->getPossibleBitDepths();
9696
Array<int> sampleRates = format->getPossibleSampleRates();
9797

98-
EXPECT_FALSE (bitDepths.isEmpty());
98+
EXPECT_TRUE (bitDepths.isEmpty());
9999
EXPECT_FALSE (sampleRates.isEmpty());
100-
EXPECT_TRUE (bitDepths.contains (kTestBitsPerSample));
100+
EXPECT_FALSE (bitDepths.contains (kTestBitsPerSample));
101101
EXPECT_TRUE (sampleRates.contains (kTestSampleRate));
102102
}
103103

0 commit comments

Comments
 (0)