Skip to content

Commit 6f723e0

Browse files
authored
fix(test): Remove hard-coded SDK version assertion (#18771)
I accidentally left a hard-coded SDK version in a test recently added by me. This PR fixes that so that CI doesn't break on the next release Closes #18772 (added automatically)
1 parent ac45e57 commit 6f723e0

File tree

1 file changed

+1
-1
lines changed
  • dev-packages/browser-integration-tests/suites/public-api/metrics/simple

1 file changed

+1
-1
lines changed

dev-packages/browser-integration-tests/suites/public-api/metrics/simple/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ sentryTest('should capture all metric types', async ({ getLocalTestUrl, page })
136136
},
137137
'sentry.sdk.version': {
138138
type: 'string',
139-
value: '10.32.1',
139+
value: expect.any(String),
140140
},
141141
'user.email': {
142142
type: 'string',

0 commit comments

Comments
 (0)