Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Updating Orion to v1.3.2 #1805

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ public void nodeCanCreatePrivacyGroupWithoutOptionalParams() {

assertThat(privacyGroups.size()).isEqualTo(1);
assertThat(privacyGroups.get(0).getPrivacyGroupId()).isEqualTo(privacyGroupId);
assertThat(privacyGroups.get(0).getName()).isEqualTo(null);
assertThat(privacyGroups.get(0).getDescription()).isEqualTo(null);
assertThat(privacyGroups.get(0).getName()).isEqualTo("Default Name");
assertThat(privacyGroups.get(0).getDescription()).isEqualTo("Default Description");
assertThat(privacyGroups.get(0).getMembers().length).isEqualTo(2);
}
}
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencyManagement {

dependency 'net.consensys.cava:cava-toml:0.5.0'

dependency 'net.consensys:orion:1.3.0'
dependency 'net.consensys:orion:1.3.2'

dependency 'org.apache.commons:commons-text:1.7'

Expand Down