Skip to content

Commit

Permalink
test uptime format
Browse files Browse the repository at this point in the history
  • Loading branch information
apocas committed Jun 18, 2024
1 parent 8762a43 commit 76f4bda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/container.js
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ describe("#container", function() {
container.wait(function(err, data) {
expect(err).to.be.null;
expect(data).to.be.ok;
expect(output).to.match(/.*users.*load average.*/);
expect(output).to.match(/.*user.*load average.*/);
done();
});
});
Expand Down Expand Up @@ -420,7 +420,7 @@ describe("#container", function() {
container.wait(function(err, data) {
expect(err).to.be.null;
expect(data).to.be.ok;
expect(output).to.match(/.*users.*load average.*/);
expect(output).to.match(/.*user.*load average.*/);
done();
});
});
Expand Down Expand Up @@ -468,7 +468,7 @@ describe("#container", function() {
container.wait(function(err, data) {
expect(err).to.be.null;
expect(data).to.be.ok;
expect(output).to.match(/.*users.*load average.*/);
expect(output).to.match(/.*user.*load average.*/);
done();
});
});
Expand Down

0 comments on commit 76f4bda

Please sign in to comment.