소스 검색

tchlp45: corrected the test; it used a non existing method instead of the private one, but this doesn't make a difference in the result (it still fails as it should ^^)

git-svn-id: branches/svenbarth/classhelpers@16844 -
svenbarth 14 년 전
부모
커밋
bc2db220be
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/test/tchlp45.pp

+ 1 - 1
tests/test/tchlp45.pp

@@ -15,5 +15,5 @@ var
   f: TFoo;
 begin
   f := TFoo.Create;
-  f.Test;
+  f.Test1;
 end.