Skip to content

Commit

Permalink
Fix from bitrise 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitorbp committed Feb 5, 2024
1 parent 8dc14be commit e0a95ae
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class OCLocalTransferDataSourceTest {
}

@Test
fun `updateTransferLocalPath changes transfer local path correctly` () {
fun `updateTransferLocalPath changes transfer local path correctly`() {

ocLocalTransferDataSource.updateTransferLocalPath(id, ocTransfer.localPath)

Expand Down Expand Up @@ -215,13 +215,13 @@ class OCLocalTransferDataSourceTest {
val transferListRandom = listOf(transferEntityQueue, transferEntityFailed, transferEntityInProgress, transferEntitySucceeded)

val transferQueue = ocTransfer.copy()
transferQueue.status = TransferStatus.TRANSFER_QUEUED
transferQueue.status = TransferStatus.TRANSFER_QUEUED

val transferFailed = ocTransfer.copy()
transferFailed.status = TransferStatus.TRANSFER_FAILED
transferFailed.status = TransferStatus.TRANSFER_FAILED

val transferSucceeded = ocTransfer.copy()
transferSucceeded.status = TransferStatus.TRANSFER_SUCCEEDED
transferSucceeded.status = TransferStatus.TRANSFER_SUCCEEDED

val transferListOrdered = listOf(ocTransfer, transferQueue, transferFailed, transferSucceeded)

Expand All @@ -238,7 +238,6 @@ class OCLocalTransferDataSourceTest {
}
}


@Test
fun `getLastTransferFor returns a OCTransfer`() {

Expand Down

0 comments on commit e0a95ae

Please sign in to comment.