File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,19 +112,19 @@ - (void)testBundleIdentifierHasPrefixInBundlesNotValidExtension {
112
112
id environmentUtilsMock = [OCMockObject mockForClass: [GULAppEnvironmentUtil class ]];
113
113
[[[environmentUtilsMock stub ] andReturnValue: @(YES )] isAppExtension ];
114
114
115
- OCMStub ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.test.someextension.some" );
115
+ OCMExpect ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.test.someextension.some" );
116
116
XCTAssertFalse ([FIRBundleUtil hasBundleIdentifierPrefix: @" com.google.test"
117
117
inBundles: @[ self .mockBundle ]]);
118
118
119
- OCMStub ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.testsomeextension" );
119
+ OCMExpect ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.testsomeextension" );
120
120
XCTAssertFalse ([FIRBundleUtil hasBundleIdentifierPrefix: @" com.google.test"
121
121
inBundles: @[ self .mockBundle ]]);
122
122
123
- OCMStub ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.testsomeextension.some" );
123
+ OCMExpect ([self .mockBundle bundleIdentifier ]).andReturn (@" com.google.testsomeextension.some" );
124
124
XCTAssertFalse ([FIRBundleUtil hasBundleIdentifierPrefix: @" com.google.test"
125
125
inBundles: @[ self .mockBundle ]]);
126
126
127
- OCMStub ([self .mockBundle bundleIdentifier ]).andReturn (@" not-exist" );
127
+ OCMExpect ([self .mockBundle bundleIdentifier ]).andReturn (@" not-exist" );
128
128
XCTAssertFalse ([FIRBundleUtil hasBundleIdentifierPrefix: @" com.google.test"
129
129
inBundles: @[ self .mockBundle ]]);
130
130
You can’t perform that action at this time.
0 commit comments