Skip to content

Commit

Permalink
Removing unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
markvdouw committed Jan 17, 2024
1 parent 9621485 commit 2f987a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class UpdateAdIdIdentityTest : BaseCleanInstallEachTest() {
)

// execute CheckAdIdRunnable without a current user
AppStateManager.CheckAdIdRunnable("newAdId", "oldAdId").run()
MParticle.getInstance()!!.Internal().configManager
AppStateManager.CheckAdIdRunnable(MParticle.getInstance()!!.Internal().configManager).run()
assertNull(MParticle.getInstance()!!.Identity().currentUser)

// set a current user
Expand All @@ -44,8 +45,7 @@ class UpdateAdIdIdentityTest : BaseCleanInstallEachTest() {
request.asIdentityRequest().body.identity_changes.let {
it.size == 1 &&
it[0].let { identityChange ->
identityChange["new_value"] == "newAdId" &&
identityChange["old_value"] == "oldAdId"
identityChange["new_value"] == "someId"
}
}
}.let {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import android.os.StatFs;
import android.provider.Settings;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.view.Display;
import android.view.WindowManager;

Expand Down

0 comments on commit 2f987a4

Please sign in to comment.