chore: fix gofmt (#11256)
William Morriss committed
Mar 29, 2026 at 10:59 UTC
85a27d3c3ffd3adb6abdaf73450edcb617626337
2 files changed
+2
-2
bin/test-go-fmt
+1
-1
@@ -11,7 +11,7 @@ if [ -n "$(cat $T)" ]; then
11
echo "-----------------------------------"
12
cat "$T"
13
echo "-----------------------------------"
14
- echo "Run 'go fmt ./...' in your source directory"
14
+ echo "Run 'gofmt -s -w .' in your source directory"
15
rm -f "$T"
16
exit 1
17
fi
test/cli/harness/node.go
+1
-1
@@ -248,7 +248,7 @@ func (n *Node) Init(ipfsArgs ...string) *Node {
248
// Telemetry disabled by default in tests.
249
cfg.Plugins = config.Plugins{
250
Plugins: map[string]config.Plugin{
251
- "telemetry": config.Plugin{
251
+ "telemetry": {
252
Disabled: true,
253
},
254
},