From a9d850e51b38fb4d8a4ce95ec4bfcb270cc15924 Mon Sep 17 00:00:00 2001 From: gornekich Date: Tue, 6 Dec 2022 17:50:46 +0400 Subject: [PATCH] nfc: fix unit tests --- applications/debug/unit_tests/nfc/nfc_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/debug/unit_tests/nfc/nfc_test.c b/applications/debug/unit_tests/nfc/nfc_test.c index 07ec73a03..4218482c7 100644 --- a/applications/debug/unit_tests/nfc/nfc_test.c +++ b/applications/debug/unit_tests/nfc/nfc_test.c @@ -393,7 +393,7 @@ static void mf_classic_generator_test(uint8_t uid_len, MfClassicType type) { "nfc_device_save == true assert failed\r\n"); // Verify that key cache is saved FuriString* key_cache_name = furi_string_alloc(); - furi_string_set_str(key_cache_name, "/ext/nfc/cache/"); + furi_string_set_str(key_cache_name, "/ext/nfc/.cache/"); for(size_t i = 0; i < uid_len; i++) { furi_string_cat_printf(key_cache_name, "%02X", uid[i]); }