pull/921/head
polarctos 2025-11-04 16:33:32 +01:00 zatwierdzone przez GitHub
rodzic fefe5fcf27
commit 88fd6e1827
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -161,7 +161,7 @@ public class Decryption {
}
public final long getUnencryptedSize() {
return unencryptedSize;
return unencryptedSize;
}
public final long calculateEndAt(long endAt) {

Wyświetl plik

@ -594,7 +594,7 @@ public final class EncryptedBlobStoreTest {
long expectedEndRange = (offset != 0) ? content.length() : 0;
assertThat(blob.getAllHeaders().get("Content-Range"))
.contains("bytes " + offset + "-" + expectedEndRange +"/" + content.length());
.contains("bytes " + offset + "-" + expectedEndRange + "/" + content.length());
}
}
@ -674,7 +674,7 @@ public final class EncryptedBlobStoreTest {
content.substring(offset, end + 1));
assertThat(blob.getAllHeaders().get("Content-Range"))
.contains("bytes " + offset + "-" + end +"/" + content.length());
.contains("bytes " + offset + "-" + end + "/" + content.length());
}
}
}