Skip to content

Commit

Permalink
Updated random-beans from 3.7.0 to 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glytching committed Sep 6, 2021
1 parent b914519 commit 577a959
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<junit.jupiter.version>5.2.0</junit.jupiter.version>
<hamcrest.version>1.3</hamcrest.version>
<mockito.version>2.7.19</mockito.version>
<random.beans.version>3.7.0</random.beans.version>
<random.beans.version>3.9.0</random.beans.version>

<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
<maven.jar.plugin.version>3.0.2</maven.jar.plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public void canInjectAttributesIfNoOverridesAreProvided(@Random Long someRandomL

@Test
public void canInjectAPartiallyPopulatedRandomObjectWithProgrammaticExtensionRegistration(@Random DomainObject domainObject) {
assertThat(domainObject.getWotsits(), nullValue());
assertThat(domainObject.getWotsits(), notNullValue());
assertThat(domainObject.getWotsits(), not(empty()));
}

@Test
Expand Down

0 comments on commit 577a959

Please sign in to comment.