[ https://issues.apache.org/jira/browse/FLINK-2254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15733156#comment-15733156 ]
ASF GitHub Bot commented on FLINK-2254: --------------------------------------- Github user greghogan commented on a diff in the pull request: https://github.com/apache/flink/pull/2564#discussion_r91585475 --- Diff: flink-test-utils-parent/flink-test-utils/src/main/java/org/apache/flink/test/util/TestBaseUtils.java --- @@ -480,7 +480,8 @@ protected static File asFile(String path) { } } - assertEquals("Wrong number of elements result", expectedStrings.length, resultStrings.length); + assertEquals(String.format("Wrong number of elements result. Expected: %s. Result: %s.", Arrays.toString(expectedStrings), Arrays.toString(resultStrings)), --- End diff -- What if we moved `String.format` to its own line, included in the string both the array lengths and contents, and added a comment to describe why we are also printing the full arrays? Also, should the arrays be printed on new lines such that they would line up until the diverging element? We'll need to move the sorting of the arrays before the length check. > Add Bipartite Graph Support for Gelly > ------------------------------------- > > Key: FLINK-2254 > URL: https://issues.apache.org/jira/browse/FLINK-2254 > Project: Flink > Issue Type: New Feature > Components: Gelly > Affects Versions: 0.10.0 > Reporter: Andra Lungu > Assignee: Ivan Mushketyk > Labels: requires-design-doc > > A bipartite graph is a graph for which the set of vertices can be divided > into two disjoint sets such that each edge having a source vertex in the > first set, will have a target vertex in the second set. We would like to > support efficient operations for this type of graphs along with a set of > metrics(http://jponnela.com/web_documents/twomode.pdf). -- This message was sent by Atlassian JIRA (v6.3.4#6332)