aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/BUILD4
-rw-r--r--lib/unittest.bzl2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/BUILD b/lib/BUILD
index ff49e88..df0c640 100644
--- a/lib/BUILD
+++ b/lib/BUILD
@@ -1,9 +1,9 @@
+load("//:bzl_library.bzl", "bzl_library")
+
licenses(["notice"])
package(default_visibility = ["//visibility:public"])
-load("//:bzl_library.bzl", "bzl_library")
-
filegroup(
name = "test_deps",
testonly = True,
diff --git a/lib/unittest.bzl b/lib/unittest.bzl
index 32a0ec8..7489890 100644
--- a/lib/unittest.bzl
+++ b/lib/unittest.bzl
@@ -19,8 +19,8 @@ functions to declare and define unit tests, and `asserts` which contains the
assertions used to within tests.
"""
-load(":sets.bzl", "sets")
load(":new_sets.bzl", new_sets = "sets")
+load(":sets.bzl", "sets")
def _make(impl, attrs = None):
"""Creates a unit test rule from its implementation function.