We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f841d06 commit 1ed0729Copy full SHA for 1ed0729
test/oop_test.exs
@@ -195,17 +195,17 @@ defmodule OOPTest do
195
end
196
197
test "define final class" do
198
- final class FriezaForthForm do
+ final class FriezaFourthForm do
199
200
201
- assert FriezaForthForm.new
+ assert FriezaFourthForm.new
202
203
- assert_raise RuntimeError, "cannot subclass final class #{FriezaForthForm}", fn ->
204
- class FriezaFifthForm < FriezaForthForm do
+ assert_raise RuntimeError, "cannot subclass final class #{FriezaFourthForm}", fn ->
+ class FriezaFifthForm < FriezaFourthForm do
205
206
207
208
- purge [FriezaForthForm, FriezaFifthForm]
+ purge [FriezaFourthForm, FriezaFifthForm]
209
210
211
defp purge(module) when is_atom(module) do
0 commit comments