Skip to content

Commit 2bc6040

Browse files
committed
More test fixup for Linux.
1 parent 0c7c1f0 commit 2bc6040

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/stdlib/tgmath.swift.gyb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,12 +229,12 @@ MathTests.test("${T}") {
229229
${T}.allTests()
230230
% if T in ['Double','CGFloat']:
231231
// Functions that are defined only for Double and CGFloat
232-
expectEqualWithTolerance(0.99750156206604, ${Module}.j0(0.1), ulps: 16)
233-
expectEqualWithTolerance(0.049937526036242, ${Module}.j1(0.1), ulps: 16)
234-
expectEqualWithTolerance(1.2229926610356451e-22, ${Module}.jn(11, 0.1), ulps: 16)
235-
expectEqualWithTolerance(-1.5342386513503667, ${Module}.y0(0.1), ulps: 16)
236-
expectEqualWithTolerance(-6.458951094702027, ${Module}.y1(0.1), ulps: 16)
237-
expectEqualWithTolerance(-2.3662012944869576e+20, ${Module}.yn(11, 0.1), ulps: 16)
232+
expectEqualWithTolerance(0.99750156206604, j0(0.1), ulps: 16)
233+
expectEqualWithTolerance(0.049937526036242, j1(0.1), ulps: 16)
234+
expectEqualWithTolerance(1.2229926610356451e-22, jn(11, 0.1), ulps: 16)
235+
expectEqualWithTolerance(-1.5342386513503667, y0(0.1), ulps: 16)
236+
expectEqualWithTolerance(-6.458951094702027, y1(0.1), ulps: 16)
237+
expectEqualWithTolerance(-2.3662012944869576e+20, yn(11, 0.1), ulps: 16)
238238
% end
239239
}
240240

0 commit comments

Comments
 (0)