You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2016/06/08 05:37:07 UTC

[lang] Fixing testTSVEmpty to use getTSVInstance instead of getCSVInstance (closes #164)

Repository: commons-lang
Updated Branches:
  refs/heads/master de88730f4 -> c049aeeff


Fixing testTSVEmpty to use getTSVInstance instead of getCSVInstance (closes #164)


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/c049aeef
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/c049aeef
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/c049aeef

Branch: refs/heads/master
Commit: c049aeeffd41dd9fb8075e719320846c83e5ea91
Parents: de88730
Author: August Shi <aw...@illinois.edu>
Authored: Tue Jun 7 17:36:04 2016 -0500
Committer: pascalschumacher <pa...@gmx.net>
Committed: Wed Jun 8 07:36:36 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/commons/lang3/text/StrTokenizerTest.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/c049aeef/src/test/java/org/apache/commons/lang3/text/StrTokenizerTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/lang3/text/StrTokenizerTest.java b/src/test/java/org/apache/commons/lang3/text/StrTokenizerTest.java
index 5df08cc..f0f68b6 100644
--- a/src/test/java/org/apache/commons/lang3/text/StrTokenizerTest.java
+++ b/src/test/java/org/apache/commons/lang3/text/StrTokenizerTest.java
@@ -767,8 +767,8 @@ public class StrTokenizerTest {
 
     @Test
     public void testTSVEmpty() {
-        this.testEmpty(StrTokenizer.getCSVInstance());
-        this.testEmpty(StrTokenizer.getCSVInstance(""));
+        this.testEmpty(StrTokenizer.getTSVInstance());
+        this.testEmpty(StrTokenizer.getTSVInstance(""));
     }
 
     void testXSVAbc(final StrTokenizer tokenizer) {