Skip to content

Commit 50529b4

Browse files
[typo] Change "equals to" => of (#2264)
1 parent f46d2a0 commit 50529b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/factory-sensors/factory-sensors.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe('monitorTheMachine', () => {
7777
expect(actions.shutdown).not.toHaveBeenCalled();
7878
});
7979

80-
test('should call only the shutdown action if the check throws an OverheatingError with a temperature equals to 651°C', () => {
80+
test('should call only the shutdown action if the check throws an OverheatingError with a temperature of 651°C', () => {
8181
actions.check = jest.fn(() => {
8282
throw new OverheatingError(651);
8383
});

0 commit comments

Comments
 (0)