~julian-edwards/gwacl/listhostedservices

« back to all changes in this revision

Viewing changes to helpers_factory_test.go

  • Committer: Tarmac
  • Author(s): Gavin Panella
  • Date: 2013-06-27 13:51:19 UTC
  • mfrom: (139.1.1 trunk)
  • Revision ID: tarmac-20130627135119-s113uaoyend7vemc
[r=allenap][bug=][author=allenap] Camel-case all variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    dest := make([]byte, length)
28
28
    for i := range dest {
29
29
        num := rand.Intn(len(chars))
30
 
        rand_char := chars[num]
31
 
        dest[i] = rand_char
 
30
        randChar := chars[num]
 
31
        dest[i] = randChar
32
32
    }
33
33
    return dest
34
34
}