Skip to content

Commit

Permalink
[geometry] fix-forward for CI failures on make_capsule_mesh_test. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
joemasterjohn committed Feb 18, 2021
1 parent f4941ec commit 507f3fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion geometry/proximity/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -711,9 +711,12 @@ drake_cc_googletest(

drake_cc_googletest(
name = "make_capsule_mesh_test",
# This test includes generating the finest mesh allowed for a particular
# cylinder. The test size is increased to "medium" so that debug builds
# are successful in CI.
size = "medium",
deps = [
":make_capsule_mesh",
":mesh_to_vtk",
":proximity_utilities",
],
)
Expand Down
2 changes: 1 addition & 1 deletion geometry/proximity/test/make_capsule_mesh_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void VerifyCapsuleMeshWithMa(const VolumeMesh<double>& mesh,
GTEST_TEST(MakeCapsuleVolumeMesTest, Long) {
const double radius = 1.0;
const double length = 3.0;
const double resolution_hint = 0.05;
const double resolution_hint = 0.5;
const Capsule capsule(radius, length);
const VolumeMesh<double> mesh =
MakeCapsuleVolumeMesh<double>(capsule, resolution_hint);
Expand Down

0 comments on commit 507f3fd

Please sign in to comment.