Skip to content

Commit bd1441c

Browse files
committed
address pr comments
1 parent 6756696 commit bd1441c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/http/fetch/test/node/httpClient.ts

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { assert } from "chai";
99

1010
import { CustomFetchHandler, HeadersInspectionHandler, HttpClient, ParametersNameDecodingHandler, RedirectHandler, RetryHandler, UserAgentHandler } from "../../src";
1111
import { DummyFetchHandler } from "../common/middleware/dummyFetchHandler";
12-
import { validateHeaderName } from "http";
1312

1413
describe("node - HTTPClient.ts", () => {
1514
describe("constructor", () => {

packages/serialization/form/src/browser/formParseNodeFactory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class FormParseNodeFactory implements ParseNodeFactory {
1313
if (!content) {
1414
throw new Error("content cannot be undefined of empty");
1515
} else if (!contentType) {
16-
throw new Error("content type cannot be undefined or pempty");
16+
throw new Error("content type cannot be undefined or empty");
1717
} else if (this.getValidContentType() !== contentType) {
1818
throw new Error(`expected a ${this.getValidContentType()} content type`);
1919
}

0 commit comments

Comments
 (0)