Skip to content

Commit

Permalink
fix: unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole0707 committed Nov 1, 2024
1 parent 2639bc9 commit 6137dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protobuf-test/src/generate-code.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ test("source retention options are unavailable in generated code", () => {
describe("JSON types", () => {
const ok_ts: json_types_ts_json.JsonTypesMessageJson = {
booleanFieldWithCustomName: true,
"Foo123_bar$": true,
Foo123_bar$: true,
"foo@":true,
"foo-bar":true,
"1foo":true,
Expand All @@ -118,7 +118,7 @@ describe("JSON types", () => {
expect(ok_ts).toBeDefined();
const ok_js: json_types_js_json.JsonTypesMessageJson = {
booleanFieldWithCustomName: true,
"Foo123_bar$": true,
Foo123_bar$: true,
"foo@":true,
"foo-bar":true,
"1foo":true,
Expand Down

0 comments on commit 6137dd4

Please sign in to comment.