Skip to content

Commit

Permalink
Upgrade Tuning-library (surge-synthesizer#3081)
Browse files Browse the repository at this point in the history
Upgrade the tuning-library to sweep in a bug fix for
a tuning error in some cases where kbm.count != s.count
  • Loading branch information
baconpaul authored Nov 8, 2020
1 parent 475b1ca commit 9b8b04b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/headless/UnitTestsTUN.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ TEST_CASE( "KBM File Parsing", "[tun]" )
REQUIRE( k.middleNote == 60 );
REQUIRE( k.tuningConstantNote == 60 );
REQUIRE( k.tuningFrequency == Approx( 261.62558 ) );
REQUIRE( k.octaveDegrees == 12 );
REQUIRE( k.octaveDegrees == 0 );
for( auto i=0; i<k.keys.size(); ++i )
REQUIRE( k.keys[i] == i );

REQUIRE( k.rawText == "" );
// REQUIRE( k.rawText == "" );
}

SECTION( "Parse A440 File" )
Expand Down

0 comments on commit 9b8b04b

Please sign in to comment.