Skip to content

Commit 626c4d5

Browse files
committed
Fix regular expression backslashes
1 parent 6a23c82 commit 626c4d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ts_updown_util.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ get_riak_release_in_slot(VsnSlot) ->
588588
unknown ->
589589
ct:fail("Failed to determine riak version in '~s' slot", [VsnSlot]);
590590
Known ->
591-
case re:run(Known, "riak_ts-(\\d+)\.(\\d+)\.(\\d+)", [{capture, all_but_first, list}]) of
591+
case re:run(Known, "riak_ts-(\\d+)\\.(\\d+)\\.(\\d+)", [{capture, all_but_first, list}]) of
592592
{match, [V1, V2, V3]} ->
593593
{list_to_integer(V1),
594594
list_to_integer(V2),

0 commit comments

Comments
 (0)