Tracktion / pluginval

Cross platform plugin testing and validation tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Log spelling mistakes in BasicTests.cpp.

jbremin opened this issue · comments

Line number: 432 in Basic Tests.cpp
ut.expectEquals (countInfs (ab), 0, "Submnormals found in buffer");

Should be:
ut.expectEquals (countInfs (ab), 0, "Subnormals found in buffer");

Line number: 434 in Basic Tests.cpp
ut.logMessage ("!!! WARNGING: " + juce::String (countSubnormals (ab)) + " submnormals found in buffer");

Should be:
ut.logMessage ("!!! WARNING: " + juce::String (countSubnormals (ab)) + " subnormals found in buffer");

Best,