Skip to content

Commit

Permalink
fix typo in names
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Nov 4, 2024
1 parent ab7d809 commit 281afed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/collection/benchmark/deep_collection_equality.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class DeepCollectionEqualityBase extends BenchmarkBase {
super('DeepCollectionQuality${unordered ? 'Unordered' : ''}.$function');
}

class DeepCollectionEqualityEqualsBenchmark extends DeepCollectionEqualityBase {
DeepCollectionEqualityEqualsBenchmark(bool unordered)
class DeepCollectionEqualityHashBenchmark extends DeepCollectionEqualityBase {
DeepCollectionEqualityHashBenchmark(bool unordered)
: super(unordered, 'hash');

@override
Expand All @@ -34,8 +34,8 @@ class DeepCollectionEqualityEqualsBenchmark extends DeepCollectionEqualityBase {
static int hash = 0;
}

class DeepCollectionEqualityHashBenchmark extends DeepCollectionEqualityBase {
DeepCollectionEqualityHashBenchmark(bool unordered)
class DeepCollectionEqualityEqualsBenchmark extends DeepCollectionEqualityBase {
DeepCollectionEqualityEqualsBenchmark(bool unordered)
: super(unordered, 'equals');

@override
Expand Down

0 comments on commit 281afed

Please sign in to comment.