qrusty-client 0.19.3 → 0.19.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/live_test.js +1 -1
  2. package/package.json +1 -1
package/live_test.js CHANGED
@@ -183,7 +183,7 @@ async function main() {
183
183
 
184
184
  await runTest("health", async () => {
185
185
  const h = await client.health();
186
- assert.ok(h.includes("OK"));
186
+ assert.strictEqual(h.status, "ok");
187
187
  });
188
188
 
189
189
  await runTest("createQueue and listQueues", async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qrusty-client",
3
- "version": "0.19.3",
3
+ "version": "0.19.4",
4
4
  "description": "Node.js client for the qrusty priority queue server API.",
5
5
  "main": "index.js",
6
6
  "author": "Gordon Greene <greeng3@obscure-reference.com>",