Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
cenkalti committed Mar 19, 2019
1 parent 9a9a606 commit 1f6b082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/analytics/analytics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func TestInsertEvents(t *testing.T) {
defer db.Close()

types := map[event.Name]property.Types{
"page_viewed": property.Types{
"page_viewed": {
"foo": property.Must(property.New("integer")),
"type_string": property.Must(property.New("string")),
"type_boolean": property.Must(property.New("boolean")),
Expand Down Expand Up @@ -142,7 +142,7 @@ func TestAlias(t *testing.T) {
defer db.Close()

types := map[event.Name]property.Types{
"page_viewed": property.Types{
"page_viewed": {
"foo": property.Must(property.New("integer")),
},
}
Expand Down

0 comments on commit 1f6b082

Please sign in to comment.