Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes committed Oct 31, 2023
1 parent d295c02 commit 7e9b582
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bazel/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load(":robolectric.bzl", "DEFAULT_AVALIABLE_VERSIONS")
load(":robolectric.bzl", "DEFAULT_AVAILABLE_VERSIONS")

_ANDROID_ALL_JARS = ["@{}//jar".format(v.name) for v in DEFAULT_AVALIABLE_VERSIONS]
_ANDROID_ALL_JARS = ["@{}//jar".format(v.name) for v in DEFAULT_AVAILABLE_VERSIONS]

java_library(
name = "android-all",
Expand Down
2 changes: 1 addition & 1 deletion bazel/robolectric.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ DEFAULT_AVAILABLE_VERSIONS = [
def robolectric_repositories():
"""Creates http_jar repositories for the given versions of Robolectric.
"""
for v in DEFAULT_AVALIABLE_VERSIONS:
for v in DEFAULT_AVAILABLE_VERSIONS:
http_jar(name = v.name, url = v.url, downloaded_file_name = "android-all-instrumented-%s.jar" % (v.version), sha256 = v.sha256)

0 comments on commit 7e9b582

Please sign in to comment.