Skip to content

Commit 51b20be

Browse files
Fix verbosity test to compare with String instead of Type
Changed test to compare info.element_type with "Float64" string instead of Float64 type, since we now store type names as strings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2d2ff5f commit 51b20be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/verbosity.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ end
156156
info = LinearSolve.get_blas_operation_info(:dgetrf, A, b)
157157

158158
@test info.matrix_size == (10, 10)
159-
@test info.element_type == Float64
159+
@test info.element_type == "Float64"
160160
@test isinf(info.condition_number) # Should not compute by default (-Inf sentinel)
161161
@test info.memory_usage_MB >= 0 # Memory can be 0 for very small matrices
162162

0 commit comments

Comments
 (0)