Skip to content

Commit

Permalink
Merge pull request #195 from hootsuite/modified-files-test
Browse files Browse the repository at this point in the history
Test modules filtering bug that was fixed in #193
  • Loading branch information
lkysow authored Nov 16, 2017
2 parents a174c30 + 62308e9 commit 283aa46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions server/events/project_finder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ func TestGetModified_NoFiles(t *testing.T) {
nil,
},
{
"Should ignore .tf files in a module directory and return an empty list",
[]string{"_modules/file.tf", "modules/file.tf", "parent/_modules/file.tf", "parent/modules/file.tf"},
nil,
"Should ignore .tf files in module directories",
[]string{"_modules/file.tf", "modules/file.tf", "parent/_modules/file.tf", "parent/modules/file.tf", "main.tf"},
[]string{"."},
},
{
"Should ignore tfstate files and return an empty list",
Expand Down

0 comments on commit 283aa46

Please sign in to comment.