From c67b0329b6e39f253c4e935db49b552e4a0f46b5 Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Tue, 1 Jan 2019 12:54:59 -0700 Subject: [PATCH] numeric alphabet --- examples/Runlen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Runlen.cpp b/examples/Runlen.cpp index c979c05..24546c0 100644 --- a/examples/Runlen.cpp +++ b/examples/Runlen.cpp @@ -40,7 +40,7 @@ char* decode(const char* output) { #define MAX_STR_LEN 3 TEST(Runlength, EncodeDecode) { - char* original = DeepState_CStrUpToLen(MAX_STR_LEN, "abcdef0123456789"); + char* original = DeepState_CStrUpToLen(MAX_STR_LEN, "0123456789"); char* encoded = encode(original); char* roundtrip = decode(encoded); ASSERT (strncmp(roundtrip, original, MAX_STR_LEN) == 0) <<