diff options
Diffstat (limited to 'test/MindTest.hs')
-rw-r--r-- | test/MindTest.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/MindTest.hs b/test/MindTest.hs index cf5c50a..7b208b4 100644 --- a/test/MindTest.hs +++ b/test/MindTest.hs @@ -92,8 +92,8 @@ networkTests = testGroup "network tests" $ , testCase "multiple inputs, multiple outputs" $ let net = Network 4 [] - [ [ Edge (Input 0, 1.0) - , Edge (Input 1, negate 2.0) + [ [ Edge (Input 0, negate 1.0) + , Edge (Input 1, 1.0) ] , [ Edge (Input 2, negate 1.0) , Edge (Input 3, 1.0) |