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
1 changed files with 2 additions and 2 deletions

View File

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