Skip to content

Commit 4899680

Browse files
committed
fix typo in counter container test
1 parent 8aa319e commit 4899680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/counter/test/containers/App.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('containers', () => {
3838
expect(p.textContent).toMatch(/^Clicked: 1 times/);
3939
});
4040

41-
it('should display updated count after descrement button click', () => {
41+
it('should display updated count after decrement button click', () => {
4242
const { buttons, p } = setup();
4343
TestUtils.Simulate.click(buttons[1]);
4444
expect(p.textContent).toMatch(/^Clicked: -1 times/);

0 commit comments

Comments
 (0)