Skip to content

Commit 4e8c57a

Browse files
author
Leif Battermann
committed
e2 readme updated
1 parent bd287d8 commit 4e8c57a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ex2/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let ``The item should not be added if the id is not unique``() =
2222
defaultPreconditions
2323
with
2424
presets = [aggId, [ItemRegistered(item, qty)]] }
25-
|> When (aggId, RegisterInventoryItem (item, qty))
25+
|> When (aggId, RegisterInventoryItem { Item = item; Quantity = qty })
2626
|> Then (InvalidState "Inventory" |> fail)
2727
```
2828

@@ -40,8 +40,8 @@ Update the functions in the `Inventory` module so they look like this:
4040

4141
```fsharp
4242
let executeCommand state command =
43-
match state with
44-
| ItemInit -> handleAtInit command
43+
match state, command with
44+
| ItemInit, (id, RegisterInventoryItem cmd) -> handleAtInit (id, cmd)
4545
| _ -> InvalidState "Inventory" |> fail
4646
4747
let evolveAtInit = function

0 commit comments

Comments
 (0)