aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/test/compiler_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sol-compiler/test/compiler_test.ts')
-rw-r--r--packages/sol-compiler/test/compiler_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sol-compiler/test/compiler_test.ts b/packages/sol-compiler/test/compiler_test.ts
index 4be77c01b..08799c14b 100644
--- a/packages/sol-compiler/test/compiler_test.ts
+++ b/packages/sol-compiler/test/compiler_test.ts
@@ -59,7 +59,7 @@ describe('#Compiler', function(): void {
compilerOpts.contracts = [contract];
const compiler = new Compiler(compilerOpts);
- expect(compiler.compileAsync()).to.be.rejectedWith(Error);
+ expect(compiler.compileAsync()).to.be.rejected();
});
describe('after a successful compilation', () => {
const contract = 'Exchange';