From 70c5af30081fde8c3d67932c8430dfd3cf0d7452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Irfan=20=C3=96m=C3=BCr?= Date: Thu, 16 Jan 2025 11:21:27 +0300 Subject: [PATCH] Remove shipping labels survey from tests --- .../com/woocommerce/android/ui/feedback/SurveyTypeTest.kt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/WooCommerce/src/test/kotlin/com/woocommerce/android/ui/feedback/SurveyTypeTest.kt b/WooCommerce/src/test/kotlin/com/woocommerce/android/ui/feedback/SurveyTypeTest.kt index da07cc1c456..d06cce4a417 100644 --- a/WooCommerce/src/test/kotlin/com/woocommerce/android/ui/feedback/SurveyTypeTest.kt +++ b/WooCommerce/src/test/kotlin/com/woocommerce/android/ui/feedback/SurveyTypeTest.kt @@ -3,7 +3,6 @@ package com.woocommerce.android.ui.feedback import com.woocommerce.android.BuildConfig import com.woocommerce.android.ui.feedback.SurveyType.MAIN import com.woocommerce.android.ui.feedback.SurveyType.PRODUCT -import com.woocommerce.android.ui.feedback.SurveyType.SHIPPING_LABELS import org.assertj.core.api.Assertions.assertThat import org.junit.Test @@ -20,11 +19,6 @@ class SurveyTypeTest { assertThat(PRODUCT.url.contains(Regex("product-milestone=$anyDigitAndNothingAfter"))).isTrue() } - @Test - fun `ShippingLabels SurveyType url should include a milestone tag`() { - assertThat(SHIPPING_LABELS.url.contains(Regex("shipping_label_milestone=$anyDigitAndNothingAfter"))).isTrue() - } - @Test fun `Main SurveyType url should NOT include a milestone tag`() { assertThat(MAIN.url.contains(Regex("milestone=$anyDigitAndNothingAfter"))).isFalse()