Skip to content

Commit 913a133

Browse files
committed
Luhn: update to v1.6.1
per exercism/problem-specifications#1523
1 parent c234cd2 commit 913a133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/luhn/uLuhnTest.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface
55
DUnitX.TestFramework;
66

77
const
8-
CanonicalVersion = '1.6.0';
8+
CanonicalVersion = '1.6.1';
99

1010
type
1111

@@ -168,7 +168,7 @@ procedure TLuhnTest.valid_strings_with_punctuation_included_become_invalid;
168168

169169
procedure TLuhnTest.valid_strings_with_symbols_included_become_invalid;
170170
begin
171-
Assert.AreEqual(false, TLuhn.Valid('055£ 444$ 285'));
171+
Assert.AreEqual(false, TLuhn.Valid('055# 444$ 285'));
172172
end;
173173

174174
initialization

0 commit comments

Comments
 (0)