fixed bug in TextOutput.java
This commit is contained in:
+1
-1
@@ -99,7 +99,7 @@ public class TextOutput {
|
||||
System.out.print(word);
|
||||
if(!(currentWordNumber == lastWordNumber)) {
|
||||
System.out.print(" ");
|
||||
currentLength = word.length();
|
||||
currentLength = word.length() + 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -27,5 +27,9 @@ class TextOutputTest {
|
||||
@Test
|
||||
public void print() {
|
||||
textOutput.print(text);
|
||||
System.out.println("fertig");
|
||||
textOutput.formatRaw();
|
||||
textOutput.print(text);
|
||||
System.out.println("fertig");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user