diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-28 21:11:13 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-01-28 21:11:13 +0300 |
commit | ba5e8a644463a19b863e862def80adb6a5a1060b (patch) | |
tree | b00fdfbfe13979454dcad185e8c0c7de237d8a0f /test/runtime_test.exs | |
parent | e442ea5722404ca551135b6f4767c016952bbda3 (diff) | |
parent | f1d5c0f07963c23d264311985c21837b9b03fd5a (diff) | |
download | pleroma-ba5e8a644463a19b863e862def80adb6a5a1060b.tar.gz pleroma-ba5e8a644463a19b863e862def80adb6a5a1060b.zip |
Merge branch 'develop' into issue/1276
Diffstat (limited to 'test/runtime_test.exs')
-rw-r--r-- | test/runtime_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtime_test.exs b/test/runtime_test.exs index f7b6f23d4..6bde608ae 100644 --- a/test/runtime_test.exs +++ b/test/runtime_test.exs @@ -6,6 +6,6 @@ defmodule Pleroma.RuntimeTest do use ExUnit.Case, async: true test "it loads custom runtime modules" do - assert Code.ensure_compiled?(RuntimeModule) + assert {:module, RuntimeModule} == Code.ensure_compiled(RuntimeModule) end end |