-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for
--incompatible_disable_starlark_host_transitions
Update rules_scala, bazel_skylib and rules_proto to avoid the breaking expected by flipping `--incompatible_disable_starlark_host_transitions` flag in bazel. Fixes: #4207 PiperOrigin-RevId: 501316312
- Loading branch information
1 parent
7cd9b19
commit 0bf4a9a
Showing
2 changed files
with
15 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
aspect/testing/tests/src/com/google/idea/blaze/aspect/scala/scalatest/FooTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package com.google.idea.blaze.aspect.scala.scalatest; | ||
|
||
import org.scalatest.FlatSpec | ||
import org.scalatest.flatspec.AnyFlatSpec | ||
|
||
/** Dummy test class. */ | ||
class FooTest extends FlatSpec { | ||
class FooTest extends AnyFlatSpec { | ||
"test" should "pass" in {} | ||
} |