Skip to content

Commit

Permalink
fix longest property js test
Browse files Browse the repository at this point in the history
  • Loading branch information
joeferner committed Feb 25, 2015
1 parent b59e0e0 commit d32ac42
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ define(['util/vertex/formatters'], function(f) {
})
it('should return longest userVisible property value if no params', function() {
var vertex = vertexFactory([
propertyFactory(PROPERTY_NAME_FIRST, 'a'),
propertyFactory(PROPERTY_NAME_LAST, 'aa'),
propertyFactory(PROPERTY_NAME_FIRST, 'k1', 'a'),
propertyFactory(PROPERTY_NAME_LAST, 'k1', 'aa'),
]);

expect(V.longestProp(vertex)).to.equal('aa, a')
Expand Down

0 comments on commit d32ac42

Please sign in to comment.