diff --git a/src/test/shell/bazel/python_version_test.sh b/src/test/shell/bazel/python_version_test.sh index 523534c2944b03..260b2ebd13d2d7 100755 --- a/src/test/shell/bazel/python_version_test.sh +++ b/src/test/shell/bazel/python_version_test.sh @@ -531,13 +531,13 @@ py_library( # (i.e., those implemented in C) use a different loader than # Python-implemented ones, even though they're both part of the standard # distribution of the interpreter. - srcs = ["re.py"], + srcs = ["mailbox.py"], ) EOF cat > test/main.py << EOF -import re +import mailbox EOF - cat > test/re.py << EOF + cat > test/mailbox.py << EOF print("I am lib!") EOF