Skip to content

Commit f613d3c

Browse files
committed
chore: reformat code
1 parent 2c3bea6 commit f613d3c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ $(LINT_TARGETS): _lint
108108
lint: ARGS=
109109
lint-and-fix: ARGS=--fix
110110
_lint:
111-
# Explicitly set OS to Linux to not skip *_linux.go files when running on macOS.
112-
# Uncloud daemon won't likely support OS other than Linux anytime soon, so for now we can rely on that.
111+
# Explicitly set OS to Linux to not skip *_linux.go files when running on macOS.
112+
# Uncloud daemon won't likely support OS other than Linux anytime soon, so for now we can rely on that.
113113
GOOS=linux golangci-lint run $(ARGS)
114114

115115
.PHONY: docs-image-push

test/e2e/machine_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ func TestMachineRename(t *testing.T) {
3030
// Select the second machine to rename
3131
originalMachine := machines[1]
3232
originalName := originalMachine.Machine.Name
33-
// nolint:goconst
3433
newName := "renamed-machine-1"
3534

3635
// Rename the machine
@@ -223,8 +222,6 @@ func TestUpdateMachine(t *testing.T) {
223222
// Select a machine to update
224223
targetMachine := machines[1]
225224
originalName := targetMachine.Machine.Name
226-
//TODO: From my point of view, the most correct option is to use exclusions.rules list for `_test\.go$` files
227-
// nolint:goconst
228225
newName := "updated-machine-name"
229226

230227
// Update the machine name using UpdateMachine directly

0 commit comments

Comments
 (0)