Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
swalker2m committed Feb 14, 2023
1 parent fcdabc8 commit 7a21dd1
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
UnnormalizedSED.StellarLibrary(StellarLibrarySpectrum.A0V).some,
SortedMap(
Band.R -> BrightnessValue
.unsafeFrom(BigDecimal(5))
.unsafeFrom(5)
.withUnit[VegaMagnitude]
.toMeasureTagged
)
Expand Down Expand Up @@ -381,7 +381,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
.body(
StringBody(
bodyIntMagUnits(
f.withValueTagged(BrightnessValue.unsafeFrom(BigDecimal(5)))
f.withValueTagged(BrightnessValue.unsafeFrom(5))
).asJson.noSpaces
)
)
Expand Down Expand Up @@ -417,7 +417,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
.body(
StringBody(
bodySurfaceMagUnits(
f.withValueTagged(BrightnessValue.unsafeFrom(BigDecimal(5)))
f.withValueTagged(BrightnessValue.unsafeFrom(5))
).asJson.noSpaces
)
)
Expand Down Expand Up @@ -454,7 +454,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
.body(
StringBody(
bodyIntGaussianMagUnits(
f.withValueTagged(BrightnessValue.unsafeFrom(BigDecimal(5)))
f.withValueTagged(BrightnessValue.unsafeFrom(5))
).asJson.noSpaces
)
)
Expand All @@ -470,7 +470,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
UnnormalizedSED.PowerLaw(c).some,
SortedMap(
Band.R -> BrightnessValue
.unsafeFrom(BigDecimal(5))
.unsafeFrom(5)
.withUnit[VegaMagnitude]
.toMeasureTagged
)
Expand Down Expand Up @@ -508,7 +508,7 @@ class LegacyITCSimulation extends GatlingHttpFunSpec {
UnnormalizedSED.BlackBody(c.withUnit[Kelvin]).some,
SortedMap(
Band.R -> BrightnessValue
.unsafeFrom(BigDecimal(5))
.unsafeFrom(5)
.withUnit[VegaMagnitude]
.toMeasureTagged
)
Expand Down

0 comments on commit 7a21dd1

Please sign in to comment.