Rename acceptance test directory from repos to repo

This commit is contained in:
Tyler McGoffin 2024-10-18 09:22:58 -07:00
parent 6c3ad5011b
commit 3f4a2aea2f
10 changed files with 2 additions and 2 deletions

View file

@ -72,12 +72,12 @@ func TestReleases(t *testing.T) {
testscript.Run(t, testScriptParamsFor(tsEnv, "release"))
}
func TestRepos(t *testing.T) {
func TestRepo(t *testing.T) {
var tsEnv testScriptEnv
if err := tsEnv.fromEnv(); err != nil {
t.Fatal(err)
}
testscript.Run(t, testScriptParamsFor(tsEnv, "repos"))
testscript.Run(t, testScriptParamsFor(tsEnv, "repo"))
}
func testScriptParamsFor(tsEnv testScriptEnv, command string) testscript.Params {