Skip to content

Commit

Permalink
chore(blp): correct test names
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Dec 7, 2023
1 parent 3ba582a commit 5d76dee
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/spec/blp/Blp.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_ABGR8888);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/pala0.blp');

Expand All @@ -164,7 +164,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_ABGR8888);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/pala1.blp');

Expand All @@ -190,7 +190,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_ABGR8888);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/pala4.blp');

Expand All @@ -216,7 +216,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_ABGR8888);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/pala8.blp');

Expand All @@ -242,7 +242,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_DXT1);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/dxt1a.blp');

Expand All @@ -268,7 +268,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_DXT3);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/dxt3.blp');

Expand All @@ -294,7 +294,7 @@ describe('Blp', () => {
expect(image.format).toBe(BLP_IMAGE_FORMAT.IMAGE_DXT5);
});

test('should return image for level 1 and RGBA8888 format', () => {
test('should return image for level 1 and ABGR8888 format', () => {
const blp = new Blp();
blp.load('./fixture/dxt5.blp');

Expand Down

0 comments on commit 5d76dee

Please sign in to comment.