Skip to content

Commit

Permalink
chore: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdecr1pto committed Aug 25, 2023
1 parent 6b9b3f2 commit 4da4866
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/DssSpell.t.base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
pragma solidity 0.8.16;

import "dss-interfaces/Interfaces.sol";
import {DssTest, GodMode, console2} from "dss-test/DssTest.sol";
import {DssTest, GodMode} from "dss-test/DssTest.sol";

import "./test/rates.sol";
import "./test/addresses_mainnet.sol";
Expand Down Expand Up @@ -688,10 +688,6 @@ contract DssSpellTestBase is Config, DssTest {
// TODO: consider a buffer for fee accrual
assertTrue(vat.debt() + sums[1] <= vat.Line(), "TestError/vat-Line-1");

console2.logUint(sums[0]);
console2.logUint(vat.Line());
console2.logUint((sums[0] + 2 * values.line_offset * RAD));

// Enforce the global Line also falls between (sum of lines) + offset and (sum of lines) + 2*offset.
assertTrue(sums[0] + values.line_offset * RAD <= vat.Line(), "TestError/vat-Line-2");
assertTrue(sums[0] + 2 * values.line_offset * RAD >= vat.Line(), "TestError/vat-Line-3");
Expand Down

0 comments on commit 4da4866

Please sign in to comment.