Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ndiritumichael committed Oct 2, 2024
1 parent 4d77487 commit 54fffd6
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 3 deletions.
41 changes: 41 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import java.util.Locale

fun IssueDTO.toEntity(): CachedIssueEntity =
CachedIssueEntity(
id = id,
issueId = id,
title = title,
state = state.lowercase(Locale.ROOT),
author = author,
Expand All @@ -36,7 +36,7 @@ fun CachedIssueEntity.toIssueModel(
assignee = assignee,
author = author,
bodyText = bodyText,
id = id,
id = issueId,
repositoryName = repositoryName,
)

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
agp = "8.5.2"
apollo = "4.0.0"
apolloMockserver = "0.0.1"
apolloMockserver = "0.0.3"
apolloTestingSupport = "4.0.0"
appauth = "0.11.1"
kotlin = "2.0.0"
Expand Down

0 comments on commit 54fffd6

Please sign in to comment.