File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -149,12 +149,12 @@ let package = Package(
149
149
. package (
150
150
name: " GoogleDataTransport " ,
151
151
url: " https://github.com/google/GoogleDataTransport.git " ,
152
- " 9.1.1 " ..< " 10.0.0 "
152
+ " 9.1.2 " ..< " 10.0.0 "
153
153
) ,
154
154
. package (
155
155
name: " GoogleUtilities " ,
156
156
url: " https://github.com/google/GoogleUtilities.git " ,
157
- " 7.5.2 " ..< " 8.0.0 "
157
+ " 7.6.0 " ..< " 8.0.0 "
158
158
) ,
159
159
. package (
160
160
name: " GTMSessionFetcher " ,
Original file line number Diff line number Diff line change @@ -65,7 +65,14 @@ class importTest: XCTestCase {
65
65
#endif
66
66
XCTAssertFalse ( GULAppEnvironmentUtil . isAppExtension ( ) )
67
67
XCTAssertNil ( FirebaseApp . app ( ) )
68
- XCTAssertEqual ( GULAppEnvironmentUtil . deviceModel ( ) , " x86_64 " )
68
+ #if os(macOS) || targetEnvironment(macCatalyst)
69
+ // Device model should now return the appropriate hardware model on macOS.
70
+ XCTAssertNotEqual ( GULAppEnvironmentUtil . deviceModel ( ) , " x86_64 " )
71
+ #else
72
+ // Device model should show up as x86_64 for iOS, tvOS, and watchOS
73
+ // simulators.
74
+ XCTAssertEqual ( GULAppEnvironmentUtil . deviceModel ( ) , " x86_64 " )
75
+ #endif
69
76
70
77
let versionParts = FirebaseVersion ( ) . split ( separator: " . " )
71
78
XCTAssert ( versionParts. count == 3 )
You can’t perform that action at this time.
0 commit comments