Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
buenaflor committed Dec 15, 2023
commit 574550ea9377449ac4ae3106b6b100b4b461dcdf
4 changes: 2 additions & 2 deletions dart/test/environment_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void main() {
test('SentryOptions are overriden by environment', () async {
final options = SentryOptions();
options.environmentVariables = MockEnvironmentVariables(
dsn: 'foo-bar',
dsn: fakeDsn,
environment: 'staging',
release: 'release-9.8.7',
dist: 'bar',
Expand All @@ -51,7 +51,7 @@ void main() {
options: options,
);

expect(options.dsn, 'foo-bar');
expect(options.dsn, fakeDsn);
expect(options.environment, 'staging');
expect(options.release, 'release-9.8.7');
expect(options.dist, 'bar');
Expand Down