9953: If config cannot be read/parsed, show just the error without the stack trace.
[arvados.git] / services / keepstore / logging_router_test.go
1 package main
2
3 import (
4         "net/http"
5         "testing"
6 )
7
8 func TestLoggingResponseWriterImplementsCloseNotifier(t *testing.T) {
9         http.ResponseWriter(&LoggingResponseWriter{}).(http.CloseNotifier).CloseNotify()
10 }