Skip to content

Commit

Permalink
fix: Set correct assertion expected value for g:doge_comment_interact…
Browse files Browse the repository at this point in the history
…ive test
  • Loading branch information
kkoomen committed Jun 21, 2019
1 parent 2a29e5f commit 2956ff5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/options/doge_comment_interactive.vader
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Do (trigger doge and try to jump forwards outside of the comment):
Then (expect the last TODO in the comment to be selected):
AssertEqual 's', mode()
AssertEqual 7, line('.')
AssertEqual 42, col('.')
AssertEqual 40, col('.')

# ------------------------------------------------------------------------------

Expand All @@ -60,7 +60,7 @@ Do (trigger doge and jump forward):
Then (expect the second TODO in the comment to be selected):
AssertEqual 's', mode()
AssertEqual 4, line('.')
AssertEqual 23, col('.')
AssertEqual 21, col('.')

# ------------------------------------------------------------------------------

Expand All @@ -74,7 +74,7 @@ Do (trigger doge and jump forward until the last TODO item):
Then (expect the last TODO in the comment to be selected):
AssertEqual 's', mode()
AssertEqual 7, line('.')
AssertEqual 42, col('.')
AssertEqual 40, col('.')

# ------------------------------------------------------------------------------

Expand Down

0 comments on commit 2956ff5

Please sign in to comment.