From: David ‘Bombe’ Roden Date: Fri, 16 Oct 2015 06:28:10 +0000 (+0200) Subject: Move method to a more sensible place X-Git-Url: https://git.pterodactylus.net/?p=jFCPlib.git;a=commitdiff_plain;h=423839518d5751777eeb4b19b001aa547209124a Move method to a more sensible place --- diff --git a/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java b/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java index f238d5a..d0ae0e5 100644 --- a/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java +++ b/src/test/java/net/pterodactylus/fcp/quelaton/DefaultFcpClientTest.java @@ -1528,15 +1528,6 @@ public class DefaultFcpClientTest { } - private void replyWithPutSuccessful(String identifier) throws IOException { - fcpServer.writeLine( - "PutSuccessful", - "URI=KSK@foo.txt", - "Identifier=" + identifier, - "EndMessage" - ); - } - private void replyWithPutFailed(String identifier) throws IOException { fcpServer.writeLine( "PutFailed", @@ -1651,6 +1642,15 @@ public class DefaultFcpClientTest { } + private void replyWithPutSuccessful(String identifier) throws IOException { + fcpServer.writeLine( + "PutSuccessful", + "URI=KSK@foo.txt", + "Identifier=" + identifier, + "EndMessage" + ); + } + private void replyWithSimpleProgress( int total, int required, int failed, int fatallyFailed, int succeeded, int lastProgress, boolean finalizedTotal, int minSuccessFetchBlocks) throws IOException {