mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-29 22:20:33 +00:00
Merge branch 'fix_navigator_tests' into 'master'
Increase precision error for navigator tests (#6770) Closes #6770 See merge request OpenMW/openmw!1909
This commit is contained in:
commit
499e688289
@ -27,7 +27,7 @@
|
||||
|
||||
MATCHER_P3(Vec3fEq, x, y, z, "")
|
||||
{
|
||||
return std::abs(arg.x() - x) < 1e-4 && std::abs(arg.y() - y) < 1e-4 && std::abs(arg.z() - z) < 1e-4;
|
||||
return std::abs(arg.x() - x) < 1e-3 && std::abs(arg.y() - y) < 1e-3 && std::abs(arg.z() - z) < 1e-3;
|
||||
}
|
||||
|
||||
namespace
|
||||
|
Loading…
x
Reference in New Issue
Block a user