Minor fixup

This commit is contained in:
Jakob Borg 2015-04-24 09:43:40 +09:00
parent bd4f404d45
commit 36c1d82146
2 changed files with 3 additions and 0 deletions

View File

@ -151,6 +151,7 @@ are mostly useful for developers. Use with care.
- "events" (the events package)
- "files" (the files package)
- "http" (the main package; HTTP requests)
- "locks" (the sync package; trace long held locks)
- "net" (the main package; connections & network messages)
- "model" (the model package)
- "scanner" (the scanner package)

View File

@ -16,6 +16,8 @@ import (
)
func TestTypes(t *testing.T) {
debug = false
if _, ok := NewMutex().(*sync.Mutex); !ok {
t.Error("Wrong type")
}