Skip to content

Commit

Permalink
Fix order of arguments to Expect.equal
Browse files Browse the repository at this point in the history
  • Loading branch information
TysonMN authored and adam-becker committed Sep 20, 2021
1 parent c0855c8 commit 07a660b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Hedgehog.Tests/TestDsl.fs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ let fableIgnore (label : string) (test : unit -> unit) : TestCase =
#endif

let inline (=!) (actual : 'a) (expected : 'a) : unit =
Expect.equal expected actual "Should be equal"
Expect.equal actual expected "Should be equal"

[<RequireQualifiedAccess>]
module Expect =
Expand Down

0 comments on commit 07a660b

Please sign in to comment.