Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandregpereira committed Feb 6, 2024
1 parent 00ee93c commit 543f0f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import kotlin.native.ObjCName
data class AbilityDescription(
val name: String,
val description: String,
val index: String = generateUUID(),
val index: String = "",
) {

companion object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ data class Speed(
data class SpeedValue(
val type: SpeedType,
val valueFormatted: String,
val index: String = generateUUID(),
val index: String = "",
) {

companion object {
Expand All @@ -40,7 +40,8 @@ data class SpeedValue(
): SpeedValue {
return SpeedValue(
type = type,
valueFormatted = valueFormatted
valueFormatted = valueFormatted,
index = generateUUID()
)
}
}
Expand Down

0 comments on commit 543f0f7

Please sign in to comment.