Skip to content

Commit 72ab64a

Browse files
committed
Update tests
1 parent 10f69e8 commit 72ab64a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/createString.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { handle, litGrassClump } from './data/unencodedPrefabObjects';
33
import { grassClumpOnFire, shortHandleWithLargeGuardAndLargeBlade } from './data/encodedPrefabObjects';
44

55
describe('createString', () => {
6-
it('should encode a prefab object', () => {
6+
it('encodes a prefab object', () => {
77
const encodedPrefab = createString(handle);
88

99
expect(encodedPrefab).toStrictEqual(shortHandleWithLargeGuardAndLargeBlade);
1010
});
1111

12-
it('should create a version string', () => {
12+
it('creates a version string', () => {
1313
const encodedPrefab = createString(litGrassClump);
1414

1515
expect(encodedPrefab).toStrictEqual(grassClumpOnFire);

tests/decodeString.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { encodedEmptyFlask } from './data/encodedStrings';
33
import { decodedEmptyFlask } from './data/decodedStrings';
44

55
describe('decodeString', () => {
6-
it('should decode a string of UInts', () => {
6+
it('decodes a string of UInts', () => {
77
const decodedString = decodeString(encodedEmptyFlask);
88

99
expect(decodedString).toStrictEqual(decodedEmptyFlask);

0 commit comments

Comments
 (0)