Skip to content

Commit

Permalink
Merge branch 'release-7.5.0' into cp24295-7.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iancha1992 authored Dec 16, 2024
2 parents 482da4e + a1f7f65 commit 1c08b72
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/py/bazel/bzlmod/bazel_overrides_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def testCmdAbsoluteModuleOverride(self):
'bazel_dep(name = "ss", version = "1.0")',
'local_path_override(',
' module_name = "ss",',
' path = "%s",' % self.Path('aa'),
' path = "%s",' % self.Path('aa').replace('\\', '/'),
')',
],
)
Expand Down
5 changes: 3 additions & 2 deletions src/test/py/bazel/py_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ def createSimpleFiles(self):
'a/BUILD',
[
'py_binary(name="a", srcs=["a.py"], deps=[":b"])',
'py_library(name="b", srcs=["b.py"])',
])
'py_library(name="b", srcs=["b.py"], imports=["."])',
],
)

self.ScratchFile(
'a/a.py',
Expand Down
2 changes: 1 addition & 1 deletion src/test/py/bazel/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def RunProgram(
]

if not allow_failure:
self.AssertExitCode(exit_code, 0, stderr_lines)
self.AssertExitCode(exit_code, 0, stderr_lines, stdout_lines)

return exit_code, stdout_lines, stderr_lines

Expand Down

0 comments on commit 1c08b72

Please sign in to comment.