review/bazel fixups
diff --git a/test/pico_time_test/CMakeLists.txt b/test/pico_time_test/CMakeLists.txt
index be969f8..231be6e 100644
--- a/test/pico_time_test/CMakeLists.txt
+++ b/test/pico_time_test/CMakeLists.txt
@@ -19,9 +19,6 @@
                 PICO_USE_SW_SPIN_LOCKS=1
         )
         target_link_libraries(pico_time_test_sw PRIVATE pico_test)
-        if (PICO_RP2040)
-            target_link_libraries(pico_time_test_sw PRIVATE pico_aon_timer)
-        endif()
         pico_add_extra_outputs(pico_time_test_sw)
     endif()
 endif()
\ No newline at end of file
diff --git a/test/short_sleep_test/BUILD.bazel b/test/short_sleep_test/BUILD.bazel
index fcdad5a..0765907 100644
--- a/test/short_sleep_test/BUILD.bazel
+++ b/test/short_sleep_test/BUILD.bazel
@@ -9,6 +9,7 @@
     srcs = ["short_sleep_test.c"],
     defines = [
         "PICO_USE_SW_SPIN_LOCKS=0",
+        "PICO_TIME_SLEEP_OVERHEAD_ADJUST_US=0",
     ],
     target_compatible_with = compatible_with_rp2(),
     deps = [
@@ -27,6 +28,7 @@
     srcs = ["short_sleep_test.c"],
     defines = [
         "PICO_USE_SW_SPIN_LOCKS=1",
+        "PICO_TIME_SLEEP_OVERHEAD_ADJUST_US=0",
     ],
     target_compatible_with = ["//bazel/constraint:rp2350"],
     deps = [