From 5cc3a02002f86a67c2dde2169fed9e24ba71313f Mon Sep 17 00:00:00 2001 From: Erik Rauer Date: Thu, 1 Apr 2021 11:20:40 -0500 Subject: [PATCH] Fix `replace-char-spec` to use the correct function This changes `replace-char-spec` to actually use `check-replace-char` instead of `check-replace` --- test/propeller/push/instructions/string_spec.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/propeller/push/instructions/string_spec.clj b/test/propeller/push/instructions/string_spec.clj index a690001..21d3281 100644 --- a/test/propeller/push/instructions/string_spec.clj +++ b/test/propeller/push/instructions/string_spec.clj @@ -388,7 +388,7 @@ (prop/for-all [str gen/string char1 gen/char char2 gen/char] - (check-replace str char1 char2))) + (check-replace-char str char1 char2))) ;; string/replace-first