Skip to content

Commit

Permalink
[Fix][CI] Fix revive error (#2183)
Browse files Browse the repository at this point in the history
Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com>
  • Loading branch information
MortalHappiness authored Jun 8, 2024
1 parent 14f96fc commit 93e32d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ray-operator/test/e2e/raycluster_autoscaler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestRayClusterAutoscaler(t *testing.T) {
test.Expect(err).NotTo(HaveOccurred())
test.T().Logf("Created ConfigMap %s/%s successfully", scripts.Namespace, scripts.Name)

test.T().Run("Create a RayCluster with autoscaling enabled", func(t *testing.T) {
test.T().Run("Create a RayCluster with autoscaling enabled", func(_ *testing.T) {
rayClusterSpecAC := rayv1ac.RayClusterSpec().
WithEnableInTreeAutoscaling(true).
WithRayVersion(GetRayVersion()).
Expand Down
2 changes: 1 addition & 1 deletion ray-operator/test/e2e/rayservice_ha_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestRayService(t *testing.T) {
test.Expect(err).NotTo(HaveOccurred())
test.T().Logf("Created ConfigMap %s/%s successfully", scripts.Namespace, scripts.Name)

test.T().Run("Static RayService", func(t *testing.T) {
test.T().Run("Static RayService", func(_ *testing.T) {
rayServiceAC := rayv1ac.RayService("static-raysvc", namespace.Name).
WithSpec(rayv1ac.RayServiceSpec().
WithServeConfigV2(`
Expand Down

0 comments on commit 93e32d0

Please sign in to comment.