🔥 Remove fetching of custom edition from rescuer
[Sone.git] / src / test / java / net / pterodactylus / sone / core / SoneRescuerTest.java
index 0b339fb..92748e8 100644 (file)
@@ -21,13 +21,10 @@ import org.mockito.stubbing.Answer;
 
 /**
  * Unit test for {@link SoneRescuer}.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David â€˜Bombe’ Roden</a>
  */
 public class SoneRescuerTest {
 
        private static final long CURRENT_EDITION = 12L;
-       private static final long SOME_OTHER_EDITION = 15L;
        private final Core core = mock(Core.class);
        private final SoneDownloader soneDownloader = mock(SoneDownloader.class);
        private final Sone sone = mock(Sone.class);
@@ -73,12 +70,6 @@ public class SoneRescuerTest {
        }
 
        @Test
-       public void currentEditionCanBeSet() {
-               soneRescuer.setEdition(SOME_OTHER_EDITION);
-               assertThat(soneRescuer.getCurrentEdition(), is(SOME_OTHER_EDITION));
-       }
-
-       @Test
        public void lastFetchOfANewSoneRescuerWasSuccessful() {
                assertThat(soneRescuer.isLastFetchSuccessful(), is(true));
        }
@@ -128,7 +119,7 @@ public class SoneRescuerTest {
                FreenetURI keyWithDocName = mock(FreenetURI.class);
                FreenetURI keyWithMetaStrings = mock(FreenetURI.class);
                when(keyWithDocName.setMetaString(eq(new String[] { "sone.xml" }))).thenReturn(keyWithMetaStrings);
-               when(sskKey.setDocName(eq("Sone-" + CURRENT_EDITION))).thenReturn(keyWithDocName);
+               when(sskKey.setDocName(eq("Sone-" + (CURRENT_EDITION - 1)))).thenReturn(keyWithDocName);
                when(sone.getRequestUri().setKeyType(eq("SSK"))).thenReturn(sskKey);
                return keyWithMetaStrings;
        }