File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/kotlin/com/fasterxml/jackson/module/kotlin/_ported/test/github Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class TestCasesFromSlack1 {
34
34
)
35
35
36
36
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" )
38
38
}
39
39
40
40
@Test
@@ -68,11 +68,11 @@ class TestCasesFromSlack2 {
68
68
data class Guest constructor(
69
69
val id : String ,
70
70
val name : String ,
71
- var rsvp : RSVP = RSVP .going
71
+ var rsvp : RSVP = RSVP .Going
72
72
)
73
73
74
74
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" )
76
76
}
77
77
78
78
@Test fun testCzarSpringThing2 () {
You can’t perform that action at this time.
0 commit comments