Skip to content

Commit

Permalink
Test udpates
Browse files Browse the repository at this point in the history
  • Loading branch information
apocas committed Mar 11, 2023
1 parent ab3fa3a commit 6675347
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ describe("#docker", function() {

container.inspect(function(err, info) {
expect(err).to.be.null;
expect(info.Config.Labels).to.deep.equal(label_map);
expect(info.Config.Labels).to.deep.include(label_map);
callback();
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ describe("#plugin", function() {

function handler(err, data) {
expect(err).to.be.null;
expect(data).to.be.empty;
expect(data).to.be.ok;
done();
}

Expand Down
4 changes: 2 additions & 2 deletions test/swarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe("#swarm", function() {

function handler(err, data) {
expect(err).to.be.null;
expect(data).to.be.empty;
expect(data).to.be.ok;
done();
}
var opts = {
Expand Down Expand Up @@ -182,7 +182,7 @@ describe("#swarm", function() {

function handler(err, data) {
expect(err).to.be.null;
expect(data).to.be.empty;
expect(data).to.be.ok;
done();
}
var opts = {
Expand Down

0 comments on commit 6675347

Please sign in to comment.