Skip to content

Commit

Permalink
Never noticed it's not correct
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapette committed Nov 17, 2022
1 parent dcd79d2 commit d22f4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/fakedata/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func ipv6() string {
}

func mac() string {
return fmt.Sprintf("%x:%x:%x:%x:%x:%x", rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255))
return fmt.Sprintf("%X:%X:%X:%X:%X:%X", rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255), rand.Intn(255))
}

func latitude() string {
Expand Down

0 comments on commit d22f4bc

Please sign in to comment.