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

Commit b949f52d authored by Nihar Thakkar's avatar Nihar Thakkar Committed by Fahim Salam Chowdhury
Browse files

Fix test issues

parent d976d345
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -43,7 +43,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)
@@ -131,7 +131,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)
@@ -207,7 +207,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)