diff --git a/test/diagnostics/diagnostics_tests.jl b/test/diagnostics/diagnostics_tests.jl index 385202a474..87c73a19e4 100644 --- a/test/diagnostics/diagnostics_tests.jl +++ b/test/diagnostics/diagnostics_tests.jl @@ -3,7 +3,12 @@ using ClimaLand @test isdefined(ClimaLand.Diagnostics, :compute_albedo!) -@test_throws ErrorException("cannot albedo with nothing") ClimaLand.Diagnostics.compute_albedo!(_, _, _, _, nothing) +@test_throws ErrorException("cannot albedo with nothing") ClimaLand.Diagnostics.compute_albedo!( + _, + _, + _, + _, + nothing, +) @test_throws ErrorException ClimaLand.Diagnostics.get_diagnostic_variable("Foo") -