Skip to content

Commit

Permalink
Update test names
Browse files Browse the repository at this point in the history
  • Loading branch information
fr33m0nk committed Apr 19, 2024
1 parent 0616101 commit bf8212a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TestI_magma_semigroup_monoid.flix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Semigroup.Semigroup
/// e.g concat(Int32, Int32) -> Int32
///
@Test
def isAdditionMagma() : Bool =
def isNumSubstractionMagma() : Bool =
Magma.concat(30, 20) == 10

///
Expand All @@ -17,5 +17,5 @@ def isAdditionMagma() : Bool =
/// e.g concat(Int32, Int32) -> Int32
///
@Test
def isAdditionSemigroup() : Bool =
def isNumAdditionSemigroup() : Bool =
Semigroup.concat(10, Semigroup.concat(30, 20)) == Semigroup.concat(20, Semigroup.concat(30, 10)) and Semigroup.concat(30, Semigroup.concat(20, 10)) == 60

0 comments on commit bf8212a

Please sign in to comment.