Reflect the latest changes in revel related to testsuite

This commit is contained in:
anonx
2014-11-25 16:17:20 +06:00
parent a13856d4d0
commit 09c730bcea
2 changed files with 3 additions and 2 deletions

View File

@@ -681,7 +681,7 @@ func (s *SourceInfo) ControllerSpecs() []*TypeInfo {
func (s *SourceInfo) TestSuites() []*TypeInfo {
if s.testSuites == nil {
s.testSuites = s.TypesThatEmbed(revel.REVEL_IMPORT_PATH + ".TestSuite")
s.testSuites = s.TypesThatEmbed(revel.REVEL_IMPORT_PATH + "/testing.TestSuite")
}
return s.testSuites
}