Skip to content

Commit 092bc03

Browse files
committed
Update integration test user context
1 parent 5a6a337 commit 092bc03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

integration_tests/Desktop.Tests.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ BeforeAll {
9494
$script:testPlatform = "Local"
9595
}
9696

97-
# -ApiToken "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"
9897
Connect-SentryApi `
9998
-ApiToken $authToken `
10099
-DSN $testDsn

project/cli/cli_commands.gd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,9 @@ func _add_integration_test_context(p_command: String) -> void:
135135
SentrySDK.add_breadcrumb(SentryBreadcrumb.create("Integration test started"))
136136

137137
var user := SentryUser.new()
138-
user.id = "test-user-123"
139-
user.username = "ps-tester"
138+
user.id = "12345"
139+
user.username = "TestUser"
140+
user.email = "[email protected]"
140141
SentrySDK.set_user(user)
141142

142143
SentrySDK.set_tag("test.suite", "integration")

0 commit comments

Comments
 (0)