fix build failures
This commit is contained in:
parent
10fe3d060f
commit
c901cb5fad
|
@ -30,7 +30,6 @@ public class FileOutputStreamTest {
|
||||||
@After
|
@After
|
||||||
public void revertFile() throws IOException {
|
public void revertFile() throws IOException {
|
||||||
PrintWriter writer = new PrintWriter(fileName);
|
PrintWriter writer = new PrintWriter(fileName);
|
||||||
writer.print("");
|
|
||||||
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,6 @@ public class FileWriterTest {
|
||||||
@After
|
@After
|
||||||
public void revertFile() throws IOException {
|
public void revertFile() throws IOException {
|
||||||
PrintWriter writer = new PrintWriter(fileName);
|
PrintWriter writer = new PrintWriter(fileName);
|
||||||
writer.print("");
|
|
||||||
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,6 @@ public class FilesTest {
|
||||||
@After
|
@After
|
||||||
public void revertFile() throws IOException {
|
public void revertFile() throws IOException {
|
||||||
PrintWriter writer = new PrintWriter(fileName);
|
PrintWriter writer = new PrintWriter(fileName);
|
||||||
writer.print("");
|
|
||||||
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,6 @@ public class GuavaTest {
|
||||||
@After
|
@After
|
||||||
public void revertFile() throws IOException {
|
public void revertFile() throws IOException {
|
||||||
PrintWriter writer = new PrintWriter(fileName);
|
PrintWriter writer = new PrintWriter(fileName);
|
||||||
writer.print("");
|
|
||||||
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
|
||||||
writer.close();
|
writer.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue