Skip to content

Commit

Permalink
final final fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Feb 21, 2024
1 parent 5ffff4c commit 36a8f2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Client#getSkyblockBingo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-undef */
const { SkyblockBingoData } = require('../src');
const { BingoData } = require('../src');
const { client } = require('./Client.js');
const { expect } = require('chai');

Expand All @@ -12,6 +12,6 @@ describe('Client#getSkyblockBingo', async () => {
expect(bingo).to.be.an('object');
});
it('required keys should exist', () => {
expect(bingo).instanceOf(SkyblockBingoData);
expect(bingo).instanceOf(BingoData);
});
});
4 changes: 2 additions & 2 deletions tests/Client#getSkyblockGovernment.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-undef */
const { SkyblockGovernment } = require('../src/index.js');
const { GovernmentData } = require('../src/index.js');
const { client } = require('./Client.js');
const { expect } = require('chai');

Expand All @@ -12,6 +12,6 @@ describe('Client#getSkyblockGovernment', async () => {
expect(government).to.be.an('object');
});
it('required keys should exist', () => {
expect(government).instanceOf(SkyblockGovernment);
expect(government).instanceOf(GovernmentData);
});
});

0 comments on commit 36a8f2e

Please sign in to comment.