Skip to content

Commit

Permalink
Merge pull request #616 from giuliohome/patch-1
Browse files Browse the repository at this point in the history
Fix bug issue #615 in Client.Tests.fs
  • Loading branch information
Larocceau authored Jun 21, 2024
2 parents ad44486 + 7b17072 commit 2fdf03f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Content/default/tests/Client/Client.Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let client =
<| fun _ ->
let newTodo = Todo.create "new todo"
let model, _ = init ()

let model, _ = update (LoadTodos (Finished [])) model
let model, _ = update (SaveTodo(Finished newTodo)) model

Expect.equal
Expand All @@ -39,4 +39,4 @@ let all =
]

[<EntryPoint>]
let main _ = Mocha.runTests all
let main _ = Mocha.runTests all

0 comments on commit 2fdf03f

Please sign in to comment.