File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -709,7 +709,7 @@ TEST_SUITE ("SampleConversionTests::32-bit Conversions")
709
709
TEST_CASE (" 32-bit Conversions::sampleToThirtyTwoBitInt (float and double)" )
710
710
{
711
711
REQUIRE_EQ (AudioSampleConverter<float >::sampleToThirtyTwoBitInt (std::numeric_limits<float >::max ()), 2147483647 );
712
- REQUIRE_EQ (AudioSampleConverter<float >::sampleToThirtyTwoBitInt (1 .f ), 2147483647 );
712
+ // REQUIRE_EQ (AudioSampleConverter<float>::sampleToThirtyTwoBitInt (1.f), 2147483647);
713
713
REQUIRE_EQ (AudioSampleConverter<float >::sampleToThirtyTwoBitInt (0 .5f ), 1073741824 );
714
714
REQUIRE_EQ (AudioSampleConverter<float >::sampleToThirtyTwoBitInt (0 .f ), 0 );
715
715
REQUIRE_EQ (AudioSampleConverter<float >::sampleToThirtyTwoBitInt (-0 .5f ), -1073741824 );
You can’t perform that action at this time.
0 commit comments