Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stevedonovan/Penlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteve donovan <steve.j.donovan@gmail.com>2011-09-10 13:32:27 +0400
committersteve donovan <steve.j.donovan@gmail.com>2011-09-10 13:32:27 +0400
commitf76242c1d82b2d54b04b1b3e41b73259cefd83ac (patch)
tree27602a6e4aa7e5d73b2deb20ffb42602236196b1 /tests/test-pylib.lua
parentbc64e4fcebd9d0ac85e9f28fd7565bb3bd504c95 (diff)
stringx.title now works as in Python: test fixed
Diffstat (limited to 'tests/test-pylib.lua')
-rw-r--r--tests/test-pylib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-pylib.lua b/tests/test-pylib.lua
index d96abdf..c2562c3 100644
--- a/tests/test-pylib.lua
+++ b/tests/test-pylib.lua
@@ -55,4 +55,4 @@ t = Template('${here} is the $answer')
assert(t:substitute {here = 'one', answer = 'two'} == 'one is the two')
assert (('hello dolly'):title() == 'Hello Dolly')
-assert (('h bk bonzo TOK fred m'):title() == 'H Bk Bonzo TOK Fred M')
+assert (('h bk bonzo TOK fred m'):title() == 'H Bk Bonzo Tok Fred M')