Update spec/ameba/ast/visitors/counting_visitor_spec.cr

This commit is contained in:
Sijawusz Pur Rahnama 2021-06-05 20:49:00 +02:00 committed by GitHub
parent c49c69ed9f
commit 651f70f680
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,8 +48,8 @@ module Ameba::AST
code = %( code = %(
def hello(a : Int32 | Int64 | Float32 | Float64) def hello(a : Int32 | Int64 | Float32 | Float64)
case a case a
in Int32 then "int32" in Int32 then "int32"
in Int64 then "int64" in Int64 then "int64"
in Float32 then "float32" in Float32 then "float32"
in Float64 then "float64" in Float64 then "float64"
end end