Skip to content

Commit 38864c9

Browse files
author
Anatoly Ostrovsky
committed
Fix http test
1 parent 30e2676 commit 38864c9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/router/url/url-matcher.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { propEq } from "../../shared/hof.js";
1313
import {
1414
hasOwn,
1515
isDefined,
16-
isNull,
1716
isNullOrUndefined,
1817
isString,
1918
} from "../../shared/utils.js";

src/services/http/http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ export function http(
10881088
timeoutId = setTimeout(() => timeoutRequest("timeout"), timeout);
10891089
} else if (isPromiseLike(timeout)) {
10901090
/** @type {Promise} */ (timeout).then(() => {
1091-
timeoutRequest("timeout");
1091+
timeoutRequest("abort");
10921092
});
10931093
}
10941094

0 commit comments

Comments
 (0)