Skip to content

Commit 62d9f7f

Browse files
author
Brad Carman
committed
Merge branch 'bgc/siso_defaults' of https://github.com/SciML/ModelingToolkitStandardLibrary.jl into bgc/siso_defaults
2 parents ef096b9 + 3efe411 commit 62d9f7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/Electrical/analog.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ _damped_sine_wave(x, f, A, st, ϕ, d) = exp((st - x) * d) * A * sin(2 * π * f *
277277

278278
for i in 1:lastindex(sources)
279279
source = sources[i]
280-
@info "Testing Voltage with $(source.name) source"
280+
@info "Testing Voltage with $(nameof(source)) source"
281281
eqs = [connect(source.output, voltage.V)
282282
connect(voltage.p, voltage_sensor.p, res.p)
283283
connect(res.n, cap.p)
@@ -342,7 +342,7 @@ end
342342

343343
for i in 1:lastindex(sources)
344344
source = sources[i]
345-
@info "Testing Current with $(source.name) source"
345+
@info "Testing Current with $(nameof(source)) source"
346346
eqs = [connect(source.output, current.I)
347347
connect(current.p, current_sensor.n)
348348
connect(current_sensor.p, res.p)

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using SafeTestsets, Test
22

3-
const GROUP = "Core" #get(ENV, "GROUP", "All")
3+
const GROUP = get(ENV, "GROUP", "All")
44

55
@time begin
66
if GROUP == "QA" || GROUP == "All"

0 commit comments

Comments
 (0)