Remove survey message for using no-bazel-mode

Already got enough feedback remove the message.

Bug: 264248351
Test: m atest ; atest-dev atest_unittests --host --no-bazel-mode
Change-Id: I63f71bea2fbabacd90a2fe888ceabc71a722a2e2
diff --git a/atest/atest_main.py b/atest/atest_main.py
index 61945fc..c9a3567 100755
--- a/atest/atest_main.py
+++ b/atest/atest_main.py
@@ -1323,23 +1323,4 @@
                 result=DETECTOR.caught_result)
             if result_file:
                 print("Run 'atest --history' to review test result history.")
-
-    # Only asking internal google user to do this survey.
-    if metrics_base.get_user_type() == metrics_base.INTERNAL_USER:
-        # The bazel_mode value will only be false if user apply --no-bazel-mode.
-        if not atest_configs.GLOBAL_ARGS.bazel_mode:
-            MESSAGE = ('\nDear `--no-bazel-mode` users,\n'
-                         'We are conducting a survey to understand why you are '
-                         'still using `--no-bazel-mode`. The survey should '
-                         'take less than 3 minutes and your responses will be '
-                         'kept confidential and will only be used to improve '
-                         'our understanding of the situation. Please click on '
-                         'the link below to begin the survey:\n\n'
-                         'http://go/atest-no-bazel-survey\n\n'
-                         'Thanks for your time and feedback.\n\n'
-                         'Sincerely,\n'
-                         'The ATest Team')
-
-            print(atest_utils.colorize(MESSAGE, constants.BLACK, bp_color=constants.CYAN))
-
     sys.exit(EXIT_CODE)