From e05fb1e0a4e6ba247a8cd4af13a3aefa23e456dd Mon Sep 17 00:00:00 2001 From: Tom Hicks Date: Wed, 10 May 2023 18:40:10 -0700 Subject: [PATCH] Updates TinyTest dependency. --- BUILD | 10 +++++----- WORKSPACE | 9 ++++----- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/BUILD b/BUILD index 8259647..f2c5d44 100644 --- a/BUILD +++ b/BUILD @@ -46,7 +46,7 @@ cc_test( srcs = ["ansi_escapes_test.cpp"], deps = [ ":ansi_escapes", - "@tinytest", + "@TinyTest//:tinytest", ], ) @@ -62,7 +62,7 @@ cc_test( srcs = ["console_logger_test.cpp"], deps = [ ":console_logger", - "@tinytest", + "@TinyTest//:tinytest", ], ) @@ -77,7 +77,7 @@ cc_test( srcs = ["logger_test.cpp"], deps = [ ":logger", - "@tinytest", + "@TinyTest//:tinytest", ], ) @@ -93,7 +93,7 @@ cc_test( srcs = ["pretty_print_test.cpp"], deps = [ ":pretty_print", - "@tinytest", + "@TinyTest//:tinytest", ], ) @@ -111,6 +111,6 @@ cc_test( target_compatible_with = ["@platforms//os:windows"], deps = [ ":windows_logger", - "@tinytest", + "@TinyTest//:tinytest", ], ) diff --git a/WORKSPACE b/WORKSPACE index 1f8d97f..48430e5 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -48,9 +48,8 @@ load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_ hedron_compile_commands_setup() http_archive( - name = "tinytest", - # sha256 = "71f366e680606e18268e6b9673a65c44c9e672f7356a61ffbcd3502c6a8eea0b", - sha256 = "49a229ff3b2470e72743f2cc239cb2bc381f2976047a34b6832115097be7d887", - strip_prefix = "TinyTest-011953cd2ccecdc5fe0b8fe83b8d0dde10fa81ab", - urls = ["https://github.com/headhunter45/TinyTest/archive/011953cd2ccecdc5fe0b8fe83b8d0dde10fa81ab.zip"], + name = "TinyTest", + sha256 = "d6729abbec6ac167635be7463d8c37ca54b08e506e61553236b50c5ad30e8736", + strip_prefix = "TinyTest-a4109d2f494fd3fd3cc47069239fd3c79f728d5a", + urls = ["https://github.com/headhunter45/TinyTest/archive/a4109d2f494fd3fd3cc47069239fd3c79f728d5a.zip"], )