summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorsvenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2>2016-01-17 12:14:54 +0000
committersvenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2>2016-01-17 12:14:54 +0000
commit74e146f0f34130da1512c53e34e9f3bbd57031af (patch)
tree6af16d22d1b9fc428baab21afd4608508e4fd17e /tests
parent7f88586468ef0289c74cf778c2b90584703a42b2 (diff)
downloadfpc-74e146f0f34130da1512c53e34e9f3bbd57031af.tar.gz
tw20821.pp:
* test program attached to the bug report was incorrectly transformed to a test for the test suite git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@32962 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'tests')
-rw-r--r--tests/webtbs/tw20821.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/webtbs/tw20821.pp b/tests/webtbs/tw20821.pp
index 5286d68659..f46eeb126e 100644
--- a/tests/webtbs/tw20821.pp
+++ b/tests/webtbs/tw20821.pp
@@ -8,7 +8,7 @@ begin
halt(1);
if b<>Byte(%10101010) then
halt(1);
- if b<>Byte(%10101010) then
+ if b<>%10101010 then
halt(1);
WriteLn('Ok');
end.