aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/CompilerTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/CompilerTests.scala')
-rw-r--r--src/test/scala/firrtlTests/CompilerTests.scala6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/scala/firrtlTests/CompilerTests.scala b/src/test/scala/firrtlTests/CompilerTests.scala
index 1d3e3174..1f793dd2 100644
--- a/src/test/scala/firrtlTests/CompilerTests.scala
+++ b/src/test/scala/firrtlTests/CompilerTests.scala
@@ -176,10 +176,8 @@ class MinimumVerilogCompilerSpec extends CompilerSpec with Matchers {
| input [2:0] i,
| output [4:0] o
|);
- | wire c;
- | wire d;
- | assign c = 1'h1;
- | assign d = 1'h1;
+ | wire c = 1'h1;
+ | wire d = 1'h1;
| assign b_0 = 1'h0;
| assign b_1 = c;
| assign b_2 = d;