From 86da7b72852becba4be4263489ccb5e2d0b5650e Mon Sep 17 00:00:00 2001 From: Chris Hibbert Date: Thu, 25 Apr 2024 09:51:19 -0700 Subject: [PATCH] chore: review suggestions --- .../a:upgrade-next/priceFeed-follower-auction.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/a3p-integration/proposals/a:upgrade-next/priceFeed-follower-auction.test.js b/a3p-integration/proposals/a:upgrade-next/priceFeed-follower-auction.test.js index 7ac4865b2bf..30ae903b075 100644 --- a/a3p-integration/proposals/a:upgrade-next/priceFeed-follower-auction.test.js +++ b/a3p-integration/proposals/a:upgrade-next/priceFeed-follower-auction.test.js @@ -3,6 +3,6 @@ import { getDetailsMatchingVats } from './vatDetails.js'; test('new auction vat', async t => { const details = await getDetailsMatchingVats('auctioneer'); - // This query matches both the auction and its governor - t.true(Object.keys(details).length > 2); + // This query matches both the auction and its governor, so 2*2 + t.is(Object.keys(details).length, 4); });