Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrmeyer committed Dec 8, 2023
1 parent 650d489 commit 2e46081
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/src/test/scala/squants/motion/VolumeFlowSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ class VolumeFlowSpec extends AnyFlatSpec with Matchers with CustomMatchers {
MillilitresPerHour(1).toString(MillilitresPerHour) should be("1.0 ml/h")
MillilitresPerMinute(1).toString(MillilitresPerMinute) should be("1.0 ml/min")
MillilitresPerSecond(1).toString(MillilitresPerSecond) should be("1.0 ml/s")
CubicFeetPerDay(1).toString(CubicFeetPerHour) should be("1.0 ft³/d")
CubicFeetPerDay(1).toString(CubicFeetPerDay) should be("1.0 ft³/d")
CubicFeetPerHour(1).toString(CubicFeetPerHour) should be("1.0 ft³/hr")
CubicFeetPerMinute(1).toString(CubicFeetPerHour) should be("1.0 ft³/m")
CubicFeetPerSecond(1).toString(CubicFeetPerHour) should be("1.0 cfs")
CubicFeetPerMinute(1).toString(CubicFeetPerMinute) should be("1.0 ft³/m")
CubicFeetPerSecond(1).toString(CubicFeetPerSecond) should be("1.0 cfs")
GallonsPerDay(1).toString(GallonsPerDay) should be("1.0 GPD")
GallonsPerHour(1).toString(GallonsPerHour) should be("1.0 GPH")
GallonsPerMinute(1).toString(GallonsPerMinute) should be("1.0 GPM")
Expand Down

0 comments on commit 2e46081

Please sign in to comment.