From 7dca97198afe2641532fdfe0ff38231147eb46b0 Mon Sep 17 00:00:00 2001 From: "Peter M. Clausen" Date: Tue, 25 May 2021 20:01:12 +0200 Subject: [PATCH] Forgot to make the test fail --- fortran/test/GildedRose_unity_test.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fortran/test/GildedRose_unity_test.f90 b/fortran/test/GildedRose_unity_test.f90 index e2262994..bbafc7bd 100644 --- a/fortran/test/GildedRose_unity_test.f90 +++ b/fortran/test/GildedRose_unity_test.f90 @@ -10,7 +10,7 @@ program GildedRose_texttest type(Item) :: it call init_item(it, "foo", 10, 20) - if (trim(it%name) /= "foo" ) then + if (trim(it%name) /= "fixMe" ) then write(*,*) "ERRORUnity test Failed" stop 1 else