Skip to content

Commit

Permalink
Merge pull request #6 from netanelkoli/fixups/fixed_tests_files_dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvalpress authored Jul 14, 2023
2 parents f9c1f16 + eba703f commit c969041
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/internal/slack_notifier/slack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import (
"testing"
)

func TestTelegramNotify(t *testing.T) {
func TestSlackNotify(t *testing.T) {
Notify("google",
"go-github",
"https://github.com/google/go-github/releases/tag/v48.1.0",
"v48.0.0", "v48.1.0", "minor", "release", false)
}

func TestTelegramNotifyWithRelease(t *testing.T) {
func TestSlackNotifyWithRelease(t *testing.T) {
Notify("google",
"go-github",
"https://github.com/google/go-github/releases/tag/v48.1.0",
Expand Down
8 changes: 4 additions & 4 deletions src/internal/telegram_notifier/telegram_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import (
"testing"
)

func TestSlackNotify(t *testing.T) {
func TestTelegramNotify(t *testing.T) {
Notify("google",
"go-github",
"https://github.com/google/go-github/releases/tag/v48.1.0",
"v48.0.0", "v48.1.0", "minor", false)
"v48.0.0", "v48.1.0", "minor", "release", false)
}

func TestSlackNotifyWithRelease(t *testing.T) {
func TestTelegramNotifyWithRelease(t *testing.T) {
Notify("google",
"go-github",
"https://github.com/google/go-github/releases/tag/v48.1.0",
"v48.0.0", "v48.1.0", "minor", true)
"v48.0.0", "v48.1.0", "minor", "release", true)
}

0 comments on commit c969041

Please sign in to comment.