Skip to content

Commit

Permalink
fix(cli): SynthUtils is not used (#9836)
Browse files Browse the repository at this point in the history
unused imports makes the jsii fail because jsii has no chill.

```
.test.ts:1:45 - error TS6133: 'SynthUtils' is declared but its value is never read.
1 import { expect as expectCDK, haveResource, SynthUtils } from '@aws-cdk/assert';
                                              ~~~~~~~~~~
```
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
richardhboyd committed Aug 19, 2020
1 parent 366c781 commit 9f1007e
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,4 +1,4 @@
import { expect as expectCDK, haveResource, SynthUtils } from '@aws-cdk/assert';
import { expect as expectCDK, haveResource } from '@aws-cdk/assert';
import * as cdk from '@aws-cdk/core';
import * as %name.PascalCased% from '../lib/index';

Expand Down

0 comments on commit 9f1007e

Please sign in to comment.