From 17b60f18202c9ddeb881a0654e91967506f093f4 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Wed, 17 Oct 2018 15:04:31 -0400 Subject: [PATCH] testsuite: Fix non-canonical Monoid instance in T3001-2 --- testsuite/tests/profiling/should_run/T3001-2.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/tests/profiling/should_run/T3001-2.hs b/testsuite/tests/profiling/should_run/T3001-2.hs index 17fa0c9c48..538a435bec 100644 --- a/testsuite/tests/profiling/should_run/T3001-2.hs +++ b/testsuite/tests/profiling/should_run/T3001-2.hs @@ -289,5 +289,5 @@ instance Semigroup Builder where instance Monoid Builder where mempty = emptyBuilder - mappend = append + mappend = (<>) -- GitLab