Skip to content

Commit

Permalink
Actually run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Anubhaw Arya committed Feb 12, 2021
1 parent c7f3575 commit 77caafb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aws/data_source_aws_msk_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ data "aws_msk_cluster" "test" {
`, rName)
}

func testSortDataSourceBrokers(t *testing.T) {
func TestAccMskClusterDataSource_SortBrokers(t *testing.T) {
testString := "this:123,is:147,just.a.test:443"
if "is:147,just.a.test:443,this:123" != sortDataSourceBrokers(testString) {
t.Fail()
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_msk_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ func testAccCheckMskClusterDestroy(s *terraform.State) error {
return nil
}

func testSortResourceBrokers(t *testing.T) {
func TestAccMskClusterReource_SortBrokers(t *testing.T) {
testString := "this:123,is:147,just.a.test:443"
if "is:147,just.a.test:443,this:123" != sortResourceBrokers(testString) {
t.Fail()
Expand Down

0 comments on commit 77caafb

Please sign in to comment.