Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5b8f8788 authored by Nihar Thakkar's avatar Nihar Thakkar
Browse files

Fix test issues

parent 9058023b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ class DavCollectionTest {
    @Test
    fun testInitialSyncCollectionReport() {
        val url = sampleUrl()
        val collection = DavCollection(httpClient, url)
        val collection = DavCollection(httpClient, url, null)

        mockServer.enqueue(MockResponse()
                .setResponseCode(207)
@@ -122,7 +122,7 @@ class DavCollectionTest {
    @Test
    fun testInitialSyncCollectionReportWithTruncation() {
        val url = sampleUrl()
        val collection = DavCollection(httpClient, url)
        val collection = DavCollection(httpClient, url, null)

        mockServer.enqueue(MockResponse()
                .setResponseCode(207)
@@ -185,7 +185,7 @@ class DavCollectionTest {
    @Test
    fun testSyncCollectionReportWithUnsupportedLimit() {
        val url = sampleUrl()
        val collection = DavCollection(httpClient, url)
        val collection = DavCollection(httpClient, url, null)

        mockServer.enqueue(MockResponse()
                .setResponseCode(507)