mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
4d04f74312
commit
b32251a5a8
4 changed files with 10 additions and 10 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue