forked from axieinfinity/ronin-dpos-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c3f21f
commit 7aa03da
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
// SPDX-License-Identifier: UNLICENSED | ||
pragma solidity >=0.8.17 <0.9.0; | ||
|
||
import {StdCheats} from "forge-std/Test.sol"; | ||
import { StdCheats } from "forge-std/Test.sol"; | ||
|
||
import {Assertions} from "./utils/Assertions.sol"; | ||
import {Utils} from "./utils/Utils.sol"; | ||
import { Assertions } from "./utils/Assertions.sol"; | ||
import { Utils } from "./utils/Utils.sol"; | ||
|
||
import {IBridgeManagerEvents} from "@ronin/contracts/interfaces/bridge/events/IBridgeManagerEvents.sol"; | ||
import { IBridgeManagerEvents } from "@ronin/contracts/interfaces/bridge/events/IBridgeManagerEvents.sol"; | ||
|
||
abstract contract Base_Test is Assertions, Utils, StdCheats, IBridgeManagerEvents {} | ||
abstract contract Base_Test is Assertions, Utils, StdCheats, IBridgeManagerEvents { } |