summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/magiconair/properties/properties_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/magiconair/properties/properties_test.go')
-rw-r--r--vendor/github.com/magiconair/properties/properties_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/magiconair/properties/properties_test.go b/vendor/github.com/magiconair/properties/properties_test.go
index 7e92618e0..a22f48df2 100644
--- a/vendor/github.com/magiconair/properties/properties_test.go
+++ b/vendor/github.com/magiconair/properties/properties_test.go
@@ -44,6 +44,8 @@ var complexTests = [][]string{
{"\nkey=value\n", "key", "value"},
{"\rkey=value\r", "key", "value"},
{"\r\nkey=value\r\n", "key", "value"},
+ {"\nkey=value\n \nkey2=value2", "key", "value", "key2", "value2"},
+ {"\nkey=value\n\t\nkey2=value2", "key", "value", "key2", "value2"},
// escaped chars in key
{"k\\ ey = value", "k ey", "value"},