Skip to content

Commit 6b0f354

Browse files
committed
test: fix "immutability" spelling
1 parent 6ad33dd commit 6b0f354

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

FirebasePerformance/Tests/Unit/FIRPerformanceTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ - (void)testReadingAttributesFromProperty {
118118
}
119119

120120
/** Validates if attributes property is immutable. */
121-
- (void)testImmutablityOfAttributesProperty {
121+
- (void)testImmutabilityOfAttributesProperty {
122122
[self.performance setValue:@"bar" forAttribute:@"foo"];
123123
NSMutableDictionary<NSString *, NSString *> *attributes =
124124
(NSMutableDictionary<NSString *, NSString *> *)self.performance.attributes;

FirebasePerformance/Tests/Unit/Instruments/FIRHTTPMetricTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ - (void)testReadingAttributesFromProperty {
283283
}
284284

285285
/** Validates if attributes property is immutable. */
286-
- (void)testImmutablityOfAttributesProperty {
286+
- (void)testImmutabilityOfAttributesProperty {
287287
FIRHTTPMetric *metric = [[FIRHTTPMetric alloc] initWithURL:self.sampleURL
288288
HTTPMethod:FIRHTTPMethodGET];
289289
[metric setValue:@"bar" forAttribute:@"foo"];

FirebasePerformance/Tests/Unit/Timer/FIRTraceTest.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ - (void)testReadingAttributesFromProperty {
612612
}
613613

614614
/** Validates if attributes property is immutable. */
615-
- (void)testImmutablityOfAttributesProperty {
615+
- (void)testImmutabilityOfAttributesProperty {
616616
FIRTrace *trace = [[FIRTrace alloc] initWithName:@"Random"];
617617
[trace setValue:@"bar" forAttribute:@"foo"];
618618
NSMutableDictionary<NSString *, NSString *> *attributes =

0 commit comments

Comments
 (0)