Skip to content

Commit 0db21cc

Browse files
committed
Change method name in doc to testDirectory
The old name `testTextFile` was unrelated to the code.
1 parent f8fa947 commit 0db21cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ If you need an empty directory then you can use the method
9090
`createDirectory(String)`.
9191

9292
@Test
93-
public void testTextFile() {
93+
public void testDirectory() {
9494
sftpServer.createDirectory("/a/directory");
9595
//code that reads from or writes to that directory
9696
}

src/main/java/com/github/stefanbirkner/fakesftpserver/rule/FakeSftpServerRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* {@link #createDirectory(String)}.
8585
* <pre>
8686
* &#064;Test
87-
* public void testTextFile() {
87+
* public void testDirectory() {
8888
* sftpServer.{@link #createDirectory(String) createDirectory}("/a/directory");
8989
* //code that reads from or writes to that directory
9090
* }

0 commit comments

Comments
 (0)