Skip to content

Commit 2ec1ce7

Browse files
committed
address review feedback
1 parent c6a9b7f commit 2ec1ce7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.generator/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def mock_build_bazel_file(tmp_path, monkeypatch):
138138
# Create the path as expected by the script: .librarian/build-request.json
139139
bazel_build_path = f"{SOURCE_DIR}/google/cloud/language/v1/BUILD.bazel"
140140
bazel_build_dir = tmp_path / Path(bazel_build_path).parent
141-
os.makedirs(bazel_build_dir)
141+
os.makedirs(bazel_build_dir, exist_ok=True)
142142
build_bazel_file = bazel_build_dir / os.path.basename(bazel_build_path)
143143

144144
build_bazel_content = """load(

0 commit comments

Comments
 (0)