Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas J. Fan <[email protected]>
  • Loading branch information
thomasjpfan committed Jan 25, 2025
1 parent d2c76ff commit 04206f8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2544,8 +2544,8 @@ func TestApplySharedMemory(t *testing.T) {
t,
test.podSpec.Containers[0].VolumeMounts[0],
v1.VolumeMount{
Name: test.sharedVolume.MountName,
MountPath: test.sharedVolume.MountPath,
Name: test.sharedVolume.GetMountName(),
MountPath: test.sharedVolume.GetMountPath(),
},
)

Expand All @@ -2559,7 +2559,7 @@ func TestApplySharedMemory(t *testing.T) {
t,
test.podSpec.Volumes[0],
v1.Volume{
Name: test.sharedVolume.MountName,
Name: test.sharedVolume.GetMountName(),
VolumeSource: v1.VolumeSource{
EmptyDir: &v1.EmptyDirVolumeSource{Medium: v1.StorageMediumMemory, SizeLimit: &quantity},
},
Expand Down

0 comments on commit 04206f8

Please sign in to comment.