From 1339ad55a8e1f78975970e025760e7e527e43726 Mon Sep 17 00:00:00 2001 From: Jj! Date: Wed, 29 Aug 2018 13:29:32 -0500 Subject: [PATCH] [NOISSUE] test now checks that no exceptions were thrown --- .../shibboleth/admin/ui/domain/EntityDescriptorTest.groovy | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/domain/EntityDescriptorTest.groovy b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/domain/EntityDescriptorTest.groovy index 335d54bce..79a539086 100644 --- a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/domain/EntityDescriptorTest.groovy +++ b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/domain/EntityDescriptorTest.groovy @@ -77,9 +77,8 @@ class EntityDescriptorTest extends Specification { when: ((RefreshableMetadataResolver)metadataResolver).refresh() - then: - println("We didn't explode .. hopefully.") - + then: 'no exceptions should be thrown' + noExceptionThrown() } @TestConfiguration