Skip to content

Commit

Permalink
Fix wrong test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Apr 6, 2017
1 parent 7ef2abb commit cb941af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtins/src/test/java/org/jline/builtins/TmuxTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void testLayoutParse() {
public void testLayoutResize() {
Tmux.Layout l = Tmux.Layout.parse("b7c7,148x44,0,0[148x26,0,0{69x26,0,0,0,78x26,70,0,3},148x17,0,27{74x17,0,27,1,36x17,75,27,4,36x17,112,27,5}]");
l.resize(140, 44);
assertEquals("f080,140x44,0,0[140x26,0,0{65x26,0,0,0,74x26,70,0,0},140x17,0,27{71x17,0,27,0,33x17,75,27,0,34x17,112,27,0}]", l.dump());
assertEquals("ebac,140x44,0,0[140x26,0,0{65x26,0,0,0,74x26,66,0,0},140x17,0,27{71x17,0,27,0,33x17,72,27,0,34x17,106,27,0}]", l.dump());
System.out.println(l.dump());
}
}

0 comments on commit cb941af

Please # to comment.