Revert minimal Go version to 1.13
Этот коммит содержится в:
родитель
c6e9cd0e19
коммит
8af91e50f6
2 изменённых файлов: 8 добавлений и 2 удалений
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
|||
module github.com/cucumber/godog
|
||||
|
||||
go 1.16
|
||||
go 1.13
|
||||
|
||||
require (
|
||||
github.com/cucumber/gherkin-go/v19 v19.0.3
|
||||
|
|
|
@ -350,7 +350,13 @@ func Test_FormatOutputRun(t *testing.T) {
|
|||
noRandomFlag, []string{featurePath},
|
||||
)
|
||||
|
||||
file := filepath.Join(t.TempDir(), "result.xml")
|
||||
dir := filepath.Join(os.TempDir(), t.Name())
|
||||
err := os.MkdirAll(dir, 0755)
|
||||
require.NoError(t, err)
|
||||
|
||||
defer os.RemoveAll(dir)
|
||||
|
||||
file := filepath.Join(dir, "result.xml")
|
||||
|
||||
actualStatus, actualOutput := testRun(t,
|
||||
fmtOutputScenarioInitializer,
|
||||
|
|
Загрузка…
Создание таблицы
Сослаться в новой задаче