Skip to content

Commit

Permalink
Update test data
Browse files Browse the repository at this point in the history
  • Loading branch information
terrakok committed Feb 7, 2024
1 parent 4a8b19b commit b2f12d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal object Res {
}

public object string {
public val PascalCaseName: StringResource = get_string_PascalCaseName()
public val PascalCase: StringResource = get_string_PascalCase()

public val _1_kebab_case: StringResource = get_string__1_kebab_case()

Expand Down Expand Up @@ -100,9 +100,9 @@ private fun get_drawable_vector_2(): DrawableResource =
)
)

private fun get_string_PascalCaseName(): StringResource =
private fun get_string_PascalCase(): StringResource =
org.jetbrains.compose.resources.StringResource(
"string:PascalCaseName", "PascalCaseName",
"string:PascalCase", "PascalCase",
setOf(
org.jetbrains.compose.resources.ResourceItem(setOf(), "values/strings.xml"),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<item>item 2</item>
<item>item 3</item>
</string-array>
<string name="PascalCaseName">Pascal Case Name</string>
<string name="1-kebab-case">Pascal Case Name</string>
<string name="camelCase">Pascal Case Name</string>
<string name="PascalCase">PascalCase</string>
<string name="1-kebab-case">1-kebab-case</string>
<string name="camelCase">camelCase</string>
</resources>

0 comments on commit b2f12d2

Please sign in to comment.