Skip to content

Commit

Permalink
Fix tolerance in test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmech committed Jan 16, 2024
1 parent 45d3fde commit d123e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pde/t_fdm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func TestFdm03(tst *testing.T) {
}
for n := 0; n < g.Npts(1); n++ {
for m := 0; m < g.Npts(0); m++ {
chk.AnaNum(tst, "u", 0.021, u[g.IndexMNPtoI(m, n, 0)], ana(g.X(m, n, 0)), chk.Verbose)
chk.AnaNum(tst, "u", 1e-14, u[g.IndexMNPtoI(m, n, 0)], ana(g.X(m, n, 0)), chk.Verbose)
}
}
}

0 comments on commit d123e3d

Please sign in to comment.