1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Update tests to reflect new project structure

This commit is contained in:
Guillaume J. Charmes 2013-05-15 01:52:09 +00:00
parent 9bb3dc9843
commit e7077320ff
5 changed files with 17 additions and 7 deletions

View file

@ -151,10 +151,10 @@ func SelfPath() string {
return path
}
type nopWriter struct {
type NopWriter struct {
}
func (w *nopWriter) Write(buf []byte) (int, error) {
func (w *NopWriter) Write(buf []byte) (int, error) {
return len(buf), nil
}