Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee committed Jul 29, 2021
1 parent 667670c commit a2d608f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/highlight/basic.elm
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ type Msg
-- <- @keyword.type.elm
-- ^ @storage.type.elm
= Increment
-- ^ constant.type-constructor.elm
-- ^ union.elm
| Decrement
-- ^ constant.type-constructor.elm
-- ^ union.elm

update : Msg -> Model
-- <- entity.name.function.elm
-- <- function.elm
-- ^ keyword.other.elm
-- ^ keyword.operator.arrow.elm

Expand All @@ -43,7 +43,7 @@ view model =
-- ^ keyword.operator.assignment.elm
div []
[ button [ onClick Decrement ] [ text "-" ]
-- ^ punctuation.definition.string.begin.elm
-- ^ string.elm
-- ^ string.elm
, div [] [ text (String.fromInt model) ]
, button [ onClick Increment ] [ text "+" ]
Expand Down

0 comments on commit a2d608f

Please sign in to comment.