You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an issue with test. The event type will be set to message if it's empty, which complies with the spec.
TestEncodeWithEvent
This is an actual decoder problem. CRLF/CR/LF are all line ending signal. If t\n:<>\r\test appeared after event:, it should be parsed into those tokens:
event:t: event type was t
\n: event type line ends
:<>: ignored
\r: ignored line ends
\test: "using the whole line as the field name, and the empty string as the field value."
(ref)
Running inside the official golang:1.6 Docker image, using stretchr/testify revision 1f4a1643a57e (on master), the unit tests are failing:
The text was updated successfully, but these errors were encountered: