Skip to content

Commit fd1338e

Browse files
meshulapixar-oss
authored andcommitted
Loosen tolerance for unit test running on Apple M2/M3 processors.
(Internal change: 2335104)
1 parent 559b77a commit fd1338e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pxr/base/gf/testenv/testGfColor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ main(int argc, char *argv[])
132132
// test that a EOTF curve <-> Linear works
133133
GfColor c1(mauveLinear, csSRGB); // convert linear to SRGB
134134
GfColor c2(c1, csLinearSRGB);
135-
TF_AXIOM(GfIsClose(mauveLinear, c2, 1e-7f));
135+
TF_AXIOM(GfIsClose(mauveLinear, c2, 1e-6f));
136136
GfColor c3(c2, csSRGB);
137137
TF_AXIOM(GfIsClose(c1, c3, 1e-7f));
138138
}

0 commit comments

Comments
 (0)