Remove redundant expectations

The remaining expectations implicitly check whether the objects are
arrays.
This commit is contained in:
Ryland Herrick 2017-11-03 16:53:34 -05:00
parent 2f22c2c7cb
commit 95cfc67450

View File

@ -20,7 +20,6 @@ describe('Array', () => {
const array = ['a', 'b', 'c'];
const deserialized = ArrayType.deserialize(array);
expect(Array.isArray(deserialized)).toEqual(true);
expect(deserialized).toEqual(['a', 'b', 'c']);
});
@ -29,7 +28,6 @@ describe('Array', () => {
const deserialized = ArrayType.deserialize(object);
expect(Array.isArray(deserialized)).toEqual(true);
expect(deserialized).toEqual(['zero', 'one', 'two']);
});
});