Skip to content

Commit 6bc85c9

Browse files
committed
Undid revert, removed "Revise" from tests
1 parent 9b57b9f commit 6bc85c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/math.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ for f in (:isfinite, :isinf, :isnan, :isreal, :isempty, :one)
179179
end
180180

181181
#Single-argument functions with dimensionless output that only work with scalar units (no offset)
182-
for f in (:iszero, :angle, :signbit)
182+
for f in (:iszero, :angle, :signbit, :sign)
183183
@eval Base.$f(q::AbstractQuantity) = (assert_scalar(unit(q)); $f(ustrip_base(q)))
184184
end
185185

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ julia --startup-file=no --depwarn=yes --threads=auto coverage.jl
1212
#To see the actual coverage in VSCode, install the Coverage Gutters extension
1313
#https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters
1414

15-
using Revise
15+
#using Revise
1616
using Test
1717
using BenchmarkTools
1818
using FlexUnits, .UnitRegistry

0 commit comments

Comments
 (0)