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

Commit a5e25232 authored by Nihar Thakkar's avatar Nihar Thakkar Committed by Sumit Pundir
Browse files

Fix test issues

parent f0a409ec
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -38,7 +38,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)
@@ -126,7 +126,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)
@@ -202,7 +202,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)