Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinlessard-wf committed Dec 1, 2022
1 parent 60c2742 commit 4aa18df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/sdk/metrics/meter_provider_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ void main() {

test(
'getting by same name, same version, same schema_url and different '
'attributes will return different meter instances', () {
'attributes will return the same meter instance', () {
const meterName = 'meterA';
const version = 'v2';
const url = 'http:schemas.com';
Expand All @@ -154,7 +154,7 @@ void main() {
final meterB = meterProvider.get(meterName,
version: version, schemaUrl: url, attributes: attributesB);

expect(identical(meterA, meterB), false);
expect(identical(meterA, meterB), true);
});

test('resource can be set', () {
Expand Down

0 comments on commit 4aa18df

Please sign in to comment.