Skip to content

Commit 16466f7

Browse files
committed
fix enum format
1 parent 17fcfe6 commit 16466f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/kotlin/com/fasterxml/jackson/module/kotlin/_ported/test/github/TestCasesFromSlack.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class TestCasesFromSlack1 {
3434
)
3535

3636
enum class RSVP(val nameKey: String) {
37-
going("rsvp.going"), maybe("rsvp.maybe"), interested("rsvp.interested")
37+
Going("rsvp.going"), Maybe("rsvp.maybe"), Interested("rsvp.interested")
3838
}
3939

4040
@Test
@@ -68,11 +68,11 @@ class TestCasesFromSlack2 {
6868
data class Guest constructor(
6969
val id: String,
7070
val name: String,
71-
var rsvp: RSVP = RSVP.going
71+
var rsvp: RSVP = RSVP.Going
7272
)
7373

7474
enum class RSVP(val nameKey: String) {
75-
going("rsvp.going"), maybe("rsvp.maybe"), interested("rsvp.interested")
75+
Going("rsvp.going"), Maybe("rsvp.maybe"), Interested("rsvp.interested")
7676
}
7777

7878
@Test fun testCzarSpringThing2() {

0 commit comments

Comments
 (0)