@@ -63,7 +63,7 @@ Deno.test("format encodes unusable characters in 'path'", () => {
63
63
path : "/<>|?*" ,
64
64
} ;
65
65
const dst = format ( src ) ;
66
- const exp = "denops:///%3c%3e%7c%3f%2a " ;
66
+ const exp = "denops:///%3C%3E%7C%3F%2A " ;
67
67
assertEquals ( dst , exp ) ;
68
68
} ) ;
69
69
Deno . test ( "format returns buffer name string from Bufname instance (with URLSearchParams)" , ( ) => {
@@ -89,7 +89,7 @@ Deno.test("format encodes unusable characters in 'params'", () => {
89
89
} ,
90
90
} ;
91
91
const dst = format ( src ) ;
92
- const exp = "denops:///absolute/path/to/worktree;foo=%3C%3E%7C%3F%2a " ;
92
+ const exp = "denops:///absolute/path/to/worktree;foo=%3C%3E%7C%3F%2A " ;
93
93
assertEquals ( dst , exp ) ;
94
94
} ) ;
95
95
Deno . test ( "format returns buffer name string from Bufname instance (with fragment)" , ( ) => {
@@ -109,7 +109,7 @@ Deno.test("format encodes unusable characters in 'fragment'", () => {
109
109
fragment : "<>|?*" ,
110
110
} ;
111
111
const dst = format ( src ) ;
112
- const exp = "denops:///absolute/path/to/worktree#%3c%3e%7c%3f%2a " ;
112
+ const exp = "denops:///absolute/path/to/worktree#%3C%3E%7C%3F%2A " ;
113
113
assertEquals ( dst , exp ) ;
114
114
} ) ;
115
115
Deno . test ( "format returns buffer name string from Bufname instance (with URLSearchParams and fragment)" , ( ) => {
@@ -134,7 +134,7 @@ Deno.test("format encodes ';' and '#' in 'path'", () => {
134
134
path : "/hello;world#hello" ,
135
135
} ;
136
136
const dst = format ( src ) ;
137
- const exp = "denops:///hello%3bworld %23hello" ;
137
+ const exp = "denops:///hello%3Bworld %23hello" ;
138
138
assertEquals ( dst , exp ) ;
139
139
} ) ;
140
140
@@ -185,7 +185,7 @@ Deno.test("parse returns Bufname instance from buffer name", () => {
185
185
assertEquals ( dst , exp ) ;
186
186
} ) ;
187
187
Deno . test ( "parse decodes percent-encoded characters in 'path'" , ( ) => {
188
- const src = "denops:///%3c%3e%7c%3f%2a " ;
188
+ const src = "denops:///%3C%3E%7C%3F%2A " ;
189
189
const dst = parse ( src ) ;
190
190
const exp = {
191
191
scheme : "denops" ,
@@ -207,7 +207,7 @@ Deno.test("parse returns Bufname instance from buffer name (with params)", () =>
207
207
assertEquals ( dst , exp ) ;
208
208
} ) ;
209
209
Deno . test ( "parse decodes percent-encoded characters in 'params'" , ( ) => {
210
- const src = "denops:///absolute/path/to/worktree;foo=%3C%3E%7C%3F%2a " ;
210
+ const src = "denops:///absolute/path/to/worktree;foo=%3C%3E%7C%3F%2A " ;
211
211
const dst = parse ( src ) ;
212
212
const exp = {
213
213
scheme : "denops" ,
@@ -229,7 +229,7 @@ Deno.test("parse returns Bufname instance from buffer name (with fragment)", ()
229
229
assertEquals ( dst , exp ) ;
230
230
} ) ;
231
231
Deno . test ( "parse decodes percent-encoded characters in 'fragment'" , ( ) => {
232
- const src = "denops:///absolute/path/to/worktree#%3c%3e%7c%3f%2a " ;
232
+ const src = "denops:///absolute/path/to/worktree#%3C%3E%7C%3F%2A " ;
233
233
const dst = parse ( src ) ;
234
234
const exp = {
235
235
scheme : "denops" ,
@@ -254,7 +254,7 @@ Deno.test("parse returns Bufname instance from buffer name (with params and frag
254
254
assertEquals ( dst , exp ) ;
255
255
} ) ;
256
256
Deno . test ( "parse decode percent-encoded characters (';' and '#') in 'path'" , ( ) => {
257
- const src = "denops:///hello%3bworld %23hello" ;
257
+ const src = "denops:///hello%3Bworld %23hello" ;
258
258
const dst = parse ( src ) ;
259
259
const exp = {
260
260
scheme : "denops" ,
0 commit comments