Skip to content

Commit 029af03

Browse files
[no-relnote] use text/template instead of html/template
Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
1 parent 8ccca28 commit 029af03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmd/nvidia-ctk-installer/toolkit/installer/executables.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ package installer
2020
import (
2121
"bytes"
2222
"fmt"
23-
"html/template"
2423
"io"
2524
"path/filepath"
2625
"strings"
26+
"text/template"
2727

2828
log "github.com/sirupsen/logrus"
2929

tests/e2e/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ GINKGO_BIN := $(CURDIR)/bin/ginkgo
2626
# - docker
2727
# - nvidia-cdi-refresh
2828
# - containerd
29-
GINKGO_FOCUS ?=
29+
GINKGO_FOCUS ?= containerd
3030

3131
test: $(GINKGO_BIN)
3232
$(GINKGO_BIN) $(GINKGO_ARGS) -v --json-report ginkgo.json --focus="$(GINKGO_FOCUS)" ./tests/e2e/...

tests/e2e/nvidia-cdi-refresh_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package e2e
1919
import (
2020
"context"
2121
"fmt"
22-
"html/template"
2322
"strings"
23+
"text/template"
2424

2525
. "github.com/onsi/ginkgo/v2"
2626
. "github.com/onsi/gomega"

0 commit comments

Comments
 (0)