Skip to content

Commit

Permalink
Test modules filtering bug that was fixed in #193
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Kysow committed Nov 16, 2017
1 parent a174c30 commit 62308e9
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 62308e9

Please sign in to comment.