Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit d4fb09e

Browse files
author
Weina Ji
committed
fix unit test
1 parent f0be9cd commit d4fb09e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/data/config/simulation_config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
"decay_time": 4,
167167
"reversal": 10,
168168
"rise_time": 0.4,
169-
"relataive_skew": 0.1,
169+
"relative_skew": 0.1,
170170
"mean": 50,
171171
"sigma": 5,
172172
"represents_physical_electrode": true,

tests/test_config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ TEST_CASE("SimulationConfig") {
527527
CHECK(input.reversal == 10);
528528
CHECK(input.randomSeed == nonstd::nullopt);
529529
CHECK(input.representsPhysicalElectrode == true);
530-
CHECK(input.relativeSkew == 0.5);
530+
CHECK(input.relativeSkew == 0.1);
531531
}
532532
{
533533
const auto input = nonstd::get<SimulationConfig::InputOrnsteinUhlenbeck>(

0 commit comments

Comments
 (0)