Typo: modp02 -> modpO2

Fixes two function names, where O2 was written as 02.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2017-11-12 14:26:34 +01:00 committed by Jan Mulder
parent 4d04f74312
commit b32251a5a8
4 changed files with 10 additions and 10 deletions

View file

@ -78,10 +78,10 @@ void TestPreferences::testPreferences()
TEST(cloud->verificationStatus(), (short)1);
auto tecDetails = pref->techDetails;
tecDetails->setModp02(0.2);
TEST(tecDetails->modp02(), 0.2);
tecDetails->setModp02(1.0);
TEST(tecDetails->modp02(), 1.0);
tecDetails->setModpO2(0.2);
TEST(tecDetails->modpO2(), 0.2);
tecDetails->setModpO2(1.0);
TEST(tecDetails->modpO2(), 1.0);
tecDetails->setGflow(2);
TEST(tecDetails->gflow(), 2);