Skip to content

Commit

Permalink
Use ~r instead of ~R
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed May 15, 2024
1 parent 3670943 commit 94af38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ecto/adapters/sqlite3_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Ecto.Adapters.SQLite3ConnTest do

alias Ecto.Adapters.SQLite3

@uuid_regex ~R/^[[:xdigit:]]{8}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{12}$/
@uuid_regex ~r/^[[:xdigit:]]{8}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{4}\b-[[:xdigit:]]{12}$/

setup do
original_binary_id_type =
Expand Down

0 comments on commit 94af38a

Please sign in to comment.