Skip to content

Commit b6ae3b4

Browse files
committed
jeremygamer13 when he has to actually test code
1 parent 315772f commit b6ae3b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/blob-mode-reducer.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ test('changeBrushSize', () => {
2020
expect(brushReducer(defaultState /* state */, changeBrushSize(newBrushSize) /* action */))
2121
.toEqual({brushSize: newBrushSize, segSize: initialSegmentSize});
2222
expect(brushReducer(1 /* state */, changeBrushSize(newBrushSize) /* action */))
23-
.toEqual({brushSize: newBrushSize, segSize: initialSegmentSize});
23+
.toEqual({brushSize: newBrushSize});
2424

2525
expect(eraserReducer(defaultState /* state */, changeEraserSize(newBrushSize) /* action */))
26-
.toEqual({brushSize: newBrushSize, segSize: initialSegmentSize});
26+
.toEqual({brushSize: newBrushSize});
2727
expect(eraserReducer(1 /* state */, changeEraserSize(newBrushSize) /* action */))
28-
.toEqual({brushSize: newBrushSize, segSize: initialSegmentSize});
28+
.toEqual({brushSize: newBrushSize});
2929
});
3030

3131
test('invalidChangeBrushSize', () => {

0 commit comments

Comments
 (0)