From 2b8944bf159310cc387fb693c6a7f8d1ab383a9a Mon Sep 17 00:00:00 2001 From: Michael C Date: Thu, 3 Feb 2022 13:51:15 -0500 Subject: [PATCH] correct tempVIP test --- test/cases/tempVip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cases/tempVip.ts b/test/cases/tempVip.ts index fa090fa..fa1e624 100644 --- a/test/cases/tempVip.ts +++ b/test/cases/tempVip.ts @@ -129,7 +129,7 @@ describe("tempVIP test", function() { .then(async res => { assert.strictEqual(res.status, 200); const row = await getSegment(UUID0); - assert.strictEqual(row.votes, -2); + assert.strictEqual(row.votes, 1); assert.strictEqual(row.locked, 0); done(); })