Skip to content

Commit 42bcfb6

Browse files
fix: update the test to pass
The previus commit failed the unit test on all the 3 OS. This commit should pass all the 3 OS test
1 parent 6e076a2 commit 42bcfb6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

source/test/testcase1.pas

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ implementation
2121

2222
procedure TTestCase1.TestHookUp;
2323
begin
24-
Fail('Write your own test');
24+
// Fail('Write your own test');// create failure
25+
26+
AssertEquals('should pass test', 1, 1);//pass the test
2527
end;
2628

2729
procedure TTestCase1.SetUp;

0 commit comments

Comments
 (0)