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); });