diff --git a/test/ReactWrapper-spec.jsx b/test/ReactWrapper-spec.jsx
index 754420f99..29adfb0c8 100644
--- a/test/ReactWrapper-spec.jsx
+++ b/test/ReactWrapper-spec.jsx
@@ -3387,12 +3387,12 @@ describeWithDOM('mount', () => {
}
}
- it('should return the outer most DOMComponent of the root wrapper', () => {
+ it('should return the outermost DOMComponent of the root wrapper', () => {
const wrapper = mount();
expect(wrapper.getDOMNode()).to.have.property('className', 'outer');
});
- it('should return the outer most DOMComponent of the inner div wrapper', () => {
+ it('should return the outermost DOMComponent of the inner div wrapper', () => {
const wrapper = mount();
expect(wrapper.find('.inner').getDOMNode()).to.have.property('className', 'inner');
});
@@ -3412,12 +3412,12 @@ describeWithDOM('mount', () => {
);
- it('should return the outer most DOMComponent of the root wrapper', () => {
+ it('should return the outermost DOMComponent of the root wrapper', () => {
const wrapper = mount();
expect(wrapper.getDOMNode()).to.have.property('className', 'outer');
});
- it('should return the outer most DOMComponent of the inner div wrapper', () => {
+ it('should return the outermost DOMComponent of the inner div wrapper', () => {
const wrapper = mount();
expect(wrapper.find('.inner').getDOMNode()).to.have.property('className', 'inner');
});