Skip to content

Commit 91e41a9

Browse files
committed
Add a unit test trying to reproduce #1026
1 parent e59a1ae commit 91e41a9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/com/fasterxml/jackson/databind/introspect/TestNamingStrategyStd.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,10 @@ static class DefaultNaming {
165165
{"_UserName", "user_name"},
166166
{"_User_Name", "user_name"},
167167
{"UGLY_NAME", "ugly_name"},
168-
{"_Bars", "bars" }
168+
{"_Bars", "bars" },
169+
// [databind#1026]
170+
{"usId", "us_id" },
171+
{"uId", "u_id" },
169172
});
170173

171174
private ObjectMapper _lcWithUndescoreMapper;

0 commit comments

Comments
 (0)