Skip to content

Revert "Add Firebase App Distribution to smoke tests" #3576

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion smoke-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ dependencies {
// Firebase
implementation "com.google.firebase:firebase-analytics"
implementation "com.google.firebase:firebase-annotations"
implementation "com.google.firebase:firebase-appdistribution"
implementation "com.google.firebase:firebase-appindexing"
implementation "com.google.firebase:firebase-auth"
implementation "com.google.firebase:firebase-common"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import com.google.firebase.messaging.FirebaseMessaging;
import com.google.firebase.ml.modeldownloader.FirebaseModelDownloader;
import com.google.firebase.perf.FirebasePerformance;
import com.google.firebase.appdistribution.FirebaseAppDistribution;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
Expand Down Expand Up @@ -56,9 +55,4 @@ public void modelDownloader_IsNotNull() {
public void performance_IsNotNull() {
assertThat(FirebasePerformance.getInstance()).isNotNull();
}

@Test
public void appDistribution_IsNotNull(){
assertThat(FirebaseAppDistribution.getInstance()).isNotNull();
}
}