diff options
author | Patrick Venture <venture@google.com> | 2019-02-20 07:35:48 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2019-02-20 07:40:04 -0800 |
commit | 903b04276b98c072b3399ac20101ad44daf335cd (patch) | |
tree | c34928ba570ddfeba6e3a6fad885f6544f8b858f /test | |
parent | dca2d484ee91ee40fc94509d831ef2c5fa792ca0 (diff) | |
download | phosphor-pid-control-903b04276b98c072b3399ac20101ad44daf335cd.tar.gz phosphor-pid-control-903b04276b98c072b3399ac20101ad44daf335cd.zip |
conf change: s/feedFwdOffOffsetCoeff/feedFwdOffsetCoeff/g
Fixup spelling mistake for configuration field name.
Change-Id: I92d0af06f4e15f4408dd10f0dd9cd71099b77f4f
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/json_parse_unittest.cpp | 6 | ||||
-rw-r--r-- | test/pid_json_unittest.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/json_parse_unittest.cpp b/test/json_parse_unittest.cpp index 7d3d449..ba6ff11 100644 --- a/test/json_parse_unittest.cpp +++ b/test/json_parse_unittest.cpp @@ -27,7 +27,7 @@ TEST(ConfigurationVerificationTest, VerifyHappy) "samplePeriod": 0.1, "proportionalCoeff": 0.0, "integralCoeff": 0.0, - "feedFwdOffOffsetCoeff": 0.0, + "feedFwdOffsetCoeff": 0.0, "feedFwdGainCoeff": 0.010, "integralLimit_min": 0.0, "integralLimit_max": 0.0, @@ -62,7 +62,7 @@ TEST(ConfigurationVerificationTest, VerifyNoSensorKey) "samplePeriod": 0.1, "proportionalCoeff": 0.0, "integralCoeff": 0.0, - "feedFwdOffOffsetCoeff": 0.0, + "feedFwdOffsetCoeff": 0.0, "feedFwdGainCoeff": 0.010, "integralLimit_min": 0.0, "integralLimit_max": 0.0, @@ -114,7 +114,7 @@ TEST(ConfigurationVerificationTest, VerifyNoSensor) "samplePeriod": 0.1, "proportionalCoeff": 0.0, "integralCoeff": 0.0, - "feedFwdOffOffsetCoeff": 0.0, + "feedFwdOffsetCoeff": 0.0, "feedFwdGainCoeff": 0.010, "integralLimit_min": 0.0, "integralLimit_max": 0.0, diff --git a/test/pid_json_unittest.cpp b/test/pid_json_unittest.cpp index f0effbd..42402d1 100644 --- a/test/pid_json_unittest.cpp +++ b/test/pid_json_unittest.cpp @@ -45,7 +45,7 @@ TEST(ZoneFromJson, oneZoneOnePid) "samplePeriod": 0.1, "proportionalCoeff": 0.0, "integralCoeff": 0.0, - "feedFwdOffOffsetCoeff": 0.0, + "feedFwdOffsetCoeff": 0.0, "feedFwdGainCoeff": 0.010, "integralLimit_min": 0.0, "integralLimit_max": 0.0, |