diff options
author | Dominik Eckelmann <deckelmann@gmail.com> | 2012-04-01 22:03:16 +0200 |
---|---|---|
committer | Dominik Eckelmann <deckelmann@gmail.com> | 2012-04-01 22:03:16 +0200 |
commit | 1a9261d2580d116502845e63eea2eb08c316cb8b (patch) | |
tree | 04d2c99b4ac2ffbbdf2c0293520d36540fb707e8 | |
parent | c42a452640ab6589e59ee73a633cb7e0868e7d3f (diff) | |
download | rpg-1a9261d2580d116502845e63eea2eb08c316cb8b.tar.gz rpg-1a9261d2580d116502845e63eea2eb08c316cb8b.tar.bz2 |
fixed testcase class name
-rw-r--r-- | _test/cases/inc/common_cleanText.test.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_test/cases/inc/common_cleanText.test.php b/_test/cases/inc/common_cleanText.test.php index 936ed1d76..332dbaeed 100644 --- a/_test/cases/inc/common_cleanText.test.php +++ b/_test/cases/inc/common_cleanText.test.php @@ -3,7 +3,7 @@ require_once DOKU_INC.'inc/init.php'; require_once DOKU_INC.'inc/common.php'; -class common_clientIP_test extends UnitTestCase { +class common_cleanText extends UnitTestCase { function test_unix(){ $unix = 'one @@ -19,9 +19,9 @@ class common_clientIP_test extends UnitTestCase { two three'; - $win = 'one
- two
-
+ $win = 'one + two + three'; $this->assertEqual(bin2hex($unix),'6f6e650a2020202020202020202020202020202074776f0a0a202020202020202020202020202020207468726565'); |