Skip to content

Commit

Permalink
fix: Use new octal literal prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
yiannistri committed Oct 17, 2023
1 parent 2810667 commit 6b79eb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/run/install/install_dashboard_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,13 @@ var _ = Describe("InstallDashboard", func() {
d, err := yaml.Marshal(testValues)
Expect(err).NotTo(HaveOccurred())

err = os.WriteFile(testValuesFiles[0], d, 0644)
err = os.WriteFile(testValuesFiles[0], d, 0o644)
Expect(err).NotTo(HaveOccurred())

d, err = yaml.Marshal(testValues2)
Expect(err).NotTo(HaveOccurred())

err = os.WriteFile(testValuesFiles[1], d, 0644)
err = os.WriteFile(testValuesFiles[1], d, 0o644)
Expect(err).NotTo(HaveOccurred())

manifests, err := CreateDashboardObjects(fakeLogger, testDashboardName, testNamespace, testAdminUser, testPasswordHash, helmChartVersion, "", testValuesFiles)
Expand Down

0 comments on commit 6b79eb4

Please sign in to comment.