diff options
| author | Jack Koenig | 2021-03-02 13:42:18 -0800 |
|---|---|---|
| committer | GitHub | 2021-03-02 13:42:18 -0800 |
| commit | 541a70c9489ec90118d45d4c953af0d0a33f8316 (patch) | |
| tree | dd0e3b4e58149ae41b4412d68bac60ea6713573f /src | |
| parent | 89e9ab0bb0fd3f1f4a79eaf6209727684a2fa23f (diff) | |
Fix CI Checks (#2097)
Bumping Scala minor version but not bumping CI guards on the version
causes tests to no longer run. Change to using startsWith(...) so that
minor version bumps won't cause issues in the future.
Also run ScalaFmt
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/scala/firrtlTests/ExpandWhensSpec.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/ExpandWhensSpec.scala b/src/test/scala/firrtlTests/ExpandWhensSpec.scala index 3c685734..52c87ffb 100644 --- a/src/test/scala/firrtlTests/ExpandWhensSpec.scala +++ b/src/test/scala/firrtlTests/ExpandWhensSpec.scala @@ -145,7 +145,8 @@ class ExpandWhensSpec extends FirrtlFlatSpec { | assert(clock, eq(in, UInt<1>("h1")), UInt<1>("h1"), "assert0") : test_assert | else : | skip""".stripMargin - val check = "assert(clock, eq(in, UInt<1>(\"h1\")), and(and(UInt<1>(\"h1\"), p), UInt<1>(\"h1\")), \"assert0\") : test_assert" + val check = + "assert(clock, eq(in, UInt<1>(\"h1\")), and(and(UInt<1>(\"h1\"), p), UInt<1>(\"h1\")), \"assert0\") : test_assert" executeTest(input, check, true) } it should "handle stops" in { |
