~jonas-drange/ubuntu-push/lp1577723-skiptest

« back to all changes in this revision

Viewing changes to messaging/messaging_test.go

  • Committer: Niklas Wenzel
  • Date: 2015-08-13 19:59:45 UTC
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: nikwen.developer@gmail.com-20150813195945-ldkx5ccsha7um1s9
Run gofmt

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
import (
20
20
        "sort"
21
 
        "time"
22
21
        "strconv"
23
22
        "sync"
 
23
        "time"
24
24
 
25
25
        . "launchpad.net/gocheck"
26
26
        "testing"
330
330
        }
331
331
 
332
332
        // Add 20 notifications
333
 
        for i:= 0; i < 20; i++ {
 
333
        for i := 0; i < 20; i++ {
334
334
                showNotification(i)
335
335
        }
336
336