Skip to content

Commit cd4eb11

Browse files
authored
Revert "update node.js version for CI (#23236)" (#23239)
This reverts commit 1d7728b.
1 parent 1d7728b commit cd4eb11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33
aliases:
44
- &docker
5-
- image: cimg/openjdk:17.0.2-node
5+
- image: cimg/openjdk:17.0.0-node
66

77
- &environment
88
TZ: /usr/share/zoneinfo/America/Los_Angeles

packages/use-sync-external-store/src/__tests__/useSyncExternalStoreShared-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
899899
store.set({});
900900
});
901901
expect(container.textContent).toEqual(
902-
"Cannot read properties of undefined (reading 'toUpperCase')",
902+
"Cannot read property 'toUpperCase' of undefined",
903903
);
904904
});
905905

@@ -935,7 +935,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
935935
store.set({});
936936
});
937937
expect(container.textContent).toEqual(
938-
"Cannot read properties of undefined (reading 'trim')",
938+
"Cannot read property 'trim' of undefined",
939939
);
940940
});
941941
});

0 commit comments

Comments
 (0)