Skip to content

Commit

Permalink
Update test for empty body
Browse files Browse the repository at this point in the history
  • Loading branch information
dstopka committed Sep 12, 2023
1 parent 4373a6a commit 79ba674
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/api_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ describe('Api', function () {
assert.strictEqual(this.api.request.method, 'GET');
});

it('ensures a default empty body', function () {
assert.strictEqual(this.api.request.body, '');
it('ensures a default undefined body', function () {
assert.strictEqual(this.api.request.body, undefined);
});

it('ensures a url is properly declared', function () {
Expand Down

0 comments on commit 79ba674

Please sign in to comment.