Skip to content

Commit 460ea94

Browse files
committed
update script and tests
1 parent 182cc7c commit 460ea94

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

maintnotifications/e2e/scenario_endpoint_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func TestEndpointTypesPushNotifications(t *testing.T) {
6161
}()
6262

6363
// Create client factory from configuration
64-
factory, err := CreateTestClientFactory("standalone")
64+
factory, err := CreateTestClientFactory("m-standalone")
6565
if err != nil {
6666
t.Skipf("Enterprise cluster not available, skipping endpoint types test: %v", err)
6767
}

maintnotifications/e2e/scenario_push_notifications_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func TestPushNotifications(t *testing.T) {
5959
}()
6060

6161
// Create client factory from configuration
62-
factory, err := CreateTestClientFactory("standalone")
62+
factory, err := CreateTestClientFactory("m-standalone")
6363
if err != nil {
6464
t.Skipf("Enterprise cluster not available, skipping push notification tests: %v", err)
6565
}

maintnotifications/e2e/scenario_stress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func TestStressPushNotifications(t *testing.T) {
4949
}()
5050

5151
// Create client factory from configuration
52-
factory, err := CreateTestClientFactory("standalone")
52+
factory, err := CreateTestClientFactory("m-standalone")
5353
if err != nil {
5454
t.Skipf("Enterprise cluster not available, skipping stress test: %v", err)
5555
}

maintnotifications/e2e/scenario_timeout_configs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestTimeoutConfigurationsPushNotifications(t *testing.T) {
7777
}()
7878

7979
// Create client factory from configuration
80-
factory, err := CreateTestClientFactory("standalone")
80+
factory, err := CreateTestClientFactory("m-standalone")
8181
if err != nil {
8282
t.Skipf("Enterprise cluster not available, skipping timeout configs test: %v", err)
8383
}

maintnotifications/e2e/scenario_tls_configs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func TestTLSConfigurationsPushNotifications(t *testing.T) {
7474
}()
7575

7676
// Create client factory from configuration
77-
factory, err := CreateTestClientFactory("standalone")
77+
factory, err := CreateTestClientFactory("m-standalone")
7878
if err != nil {
7979
t.Skipf("Enterprise cluster not available, skipping TLS configs test: %v", err)
8080
}

maintnotifications/e2e/scripts/run-e2e-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Maintenance Notifications E2E Tests Runner
44
# This script sets up the environment and runs the maintnotifications upgrade E2E tests
55

6-
set -eu
6+
set -euo pipefail
77

88
# Script directory and repository root
99
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

0 commit comments

Comments
 (0)