Fix test comment typo (#13568)

This commit is contained in:
Heaven
2018-09-14 08:33:16 +08:00
committed by Nathan Hunzaker
parent 4bcee56210
commit b488a5d9c5

View File

@@ -302,7 +302,7 @@ describe('ReactMount', () => {
ReactDOM.render(<Foo>a</Foo>, container2);
// The update did not flush yet.
expect(container1.textContent).toEqual('1');
// The initial mount flushed, but not the update scheduled in cDU.
// The initial mount flushed, but not the update scheduled in cDM.
expect(container2.textContent).toEqual('a');
});
// All updates have flushed.