Update async test to use new `super` syntax

This commit is contained in:
Geoffrey Booth 2017-02-04 17:05:18 -08:00
parent da3db1be39
commit 81cbca5bb8
1 changed files with 2 additions and 2 deletions

View File

@ -203,8 +203,8 @@ test "async methods in classes", ->
eq await new Base().method(), 2
class Child extends Base
@static: -> super
method: -> super
@static: -> super()
method: -> super()
eq await Child.static(), 1
eq await new Child().method(), 2