Skip to content

Commit

Permalink
Added couple of $0 anchors where missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshaw committed May 7, 2014
1 parent 2438821 commit 33830ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UltiSnips/java.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ assert ${1:test}${2/(.+)/(?1: \: ")/}${2:Failure message}${2/(.+)/(?1:")/};$0
endsnippet

snippet at "assert true" b
assertTrue(${1:actual});
assertTrue(${1:actual});$0
endsnippet

snippet af "assert false" b
assertFalse(${1:actual});$0
endsnippet

snippet ae "assert equals" b
assertEquals(${1:expected}, ${2:actual});
assertEquals(${1:expected}, ${2:actual});$0
endsnippet

snippet br "break"
Expand Down

0 comments on commit 33830ae

Please sign in to comment.