Skip to content

Commit 600f4f9

Browse files
authored
test: fix typos in RFC3339 and webserver test descriptions (#1801)
* Update rfc3339.spec.ts * Update webserver.spec.ts
1 parent 67234a8 commit 600f4f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/encoding/src/rfc3339.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe("RFC3339", () => {
8585
expect(fromRfc3339("2002-10-02T11:12:13.1Z")).toEqual(new Date(Date.UTC(2002, 9, 2, 11, 12, 13, 100)));
8686
expect(fromRfc3339("2002-10-02T11:12:13.9Z")).toEqual(new Date(Date.UTC(2002, 9, 2, 11, 12, 13, 900)));
8787

88-
// 2 digit
88+
// 2 digits
8989
expect(fromRfc3339("2002-10-02T11:12:13.00Z")).toEqual(new Date(Date.UTC(2002, 9, 2, 11, 12, 13, 0)));
9090
expect(fromRfc3339("2002-10-02T11:12:13.12Z")).toEqual(new Date(Date.UTC(2002, 9, 2, 11, 12, 13, 120)));
9191
expect(fromRfc3339("2002-10-02T11:12:13.99Z")).toEqual(new Date(Date.UTC(2002, 9, 2, 11, 12, 13, 990)));

packages/faucet/src/api/webserver.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ChainConstants, Webserver } from "./webserver";
77

88
function pendingWithoutSimapp(): void {
99
if (!process.env.SIMAPP47_ENABLED && !process.env.SIMAPP50_ENABLED) {
10-
pending("Set SIMAPP{47,50}_ENABLED to enabled Stargate node-based tests");
10+
pending("Set SIMAPP{47,50}_ENABLED to enable Stargate node-based tests");
1111
return;
1212
}
1313
}

0 commit comments

Comments
 (0)