Skip to content

Commit

Permalink
Remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
HardlyDifficult committed May 21, 2020
1 parent 295fed6 commit 2df55de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dat/minDuration.js
Expand Up @@ -78,7 +78,7 @@ contract("dat / minDuration", (accounts) => {
await approveAll(contracts, accounts);
});

it.only("should fail to initialize again", async () => {
it("should fail to initialize again", async () => {
await reverts(
contracts.dat.initializeRunStartedOn(1, {
from: await contracts.dat.control(),
Expand All @@ -87,7 +87,7 @@ contract("dat / minDuration", (accounts) => {
);
});

it.only("runStartedOn set if there is no INIT_GOAL", async () => {
it("runStartedOn set if there is no INIT_GOAL", async () => {
assert.notEqual(await contracts.dat.runStartedOn(), "0");
});
});
Expand Down

0 comments on commit 2df55de

Please sign in to comment.