Skip to content

Commit

Permalink
Fix UT and github action
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshaySainiDell authored Nov 12, 2024
1 parent 24f42fd commit b9a2666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [ main ]
jobs:
code-check:
name: Check Go formatting, vetting
name: Check Go formatting, linting, vetting
runs-on: ubuntu-latest
steps:
- name: Checkout the code
Expand Down
2 changes: 1 addition & 1 deletion pkg/common/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ func TestGetMountFlags(t *testing.T) {

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := GetMountFlags(tt.vc)
result := common.GetMountFlags(tt.vc)
assert.Equal(t, tt.expected, result)
})
}
Expand Down

0 comments on commit b9a2666

Please sign in to comment.