Skip to content

Commit 4ea193d

Browse files
committed
revert instrumentation changes
1 parent 275c115 commit 4ea193d

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

aws-analytics-pinpoint/src/androidTest/java/com/amplifyframework/analytics/pinpoint/PinpointAnalyticsInstrumentationTest.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,6 @@ class PinpointAnalyticsInstrumentationTest {
283283
.userAttributes(userAttributes)
284284
.build()
285285
val uuid = UUID.randomUUID().toString()
286-
Log.d("PinpointAnalyticsInstrumentationTest", "identify user with endpoint id: $uuid")
287286
Amplify.Analytics.identifyUser(uuid, pinpointUserProfile)
288287
Sleep.milliseconds(PINPOINT_ROUNDTRIP_TIMEOUT)
289288
var endpointResponse = fetchEndpointResponse()
@@ -318,7 +317,7 @@ class PinpointAnalyticsInstrumentationTest {
318317
}
319318

320319
private fun assertCommonEndpointResponseProperties(endpointResponse: EndpointResponse) {
321-
Log.i("DEBUG", endpointResponse.toString())
320+
Log.d("PinpointAnalyticsInstrumentationTest", endpointResponse.toString())
322321
val attributes = endpointResponse.attributes!!
323322
Assert.assertEquals("[email protected]", attributes["email"]!![0])
324323
Assert.assertEquals("test-user", attributes["name"]!![0])

configuration/instrumentation-tests.gradle

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
Need to create backends for s3, pinpoint, predictions, core
44
*/
55
def module_backends = [
6-
'aws-analytics-pinpoint': 'NONE'
6+
'aws-datastore':'DataStoreIntegTests',
7+
'aws-api': 'ApiInstrumentedTests',
8+
'aws-geo-location': 'GeoIntegTests',
9+
'maplibre-adapter': 'GeoIntegTests',
10+
'aws-storage-s3': 'NONE',
11+
'aws-analytics-pinpoint': 'NONE',
12+
'aws-predictions': 'NONE',
13+
'core':'NONE',
14+
'aws-auth-cognito': 'AuthIntegrationTests'
715
]
816

917
subprojects {

0 commit comments

Comments
 (0)