Skip to content

Commit

Permalink
tests: add delete last line
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jan 2, 2025
1 parent c860f67 commit 03c88f2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkg/golinters/internal/diff_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ func Test_parse(t *testing.T) {
log logutils.Log
expected []Change
}{
{
diff: "delete_last_line.diff",
expected: []Change{{
From: 10,
To: 10,
}},
},
{
diff: "delete_only_first_lines.diff",
expected: []Change{{
Expand Down
9 changes: 9 additions & 0 deletions pkg/golinters/internal/testdata/delete_last_line.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
diff --git i/main.go w/main.go
index ef3cbb7..52a7925 100644
--- i/main.go
+++ w/main.go
@@ -7,4 +7,3 @@ import (
func main() {
fmt.Println("hello world")
}
-

0 comments on commit 03c88f2

Please sign in to comment.