@@ -725,8 +725,8 @@ It returns the number of bytes written and any write error encountered.
725
725
const vendorSupport = await isVendorSupported ( ) ;
726
726
const filePath = path . join ( fixturePath , 'vendoring' , 'main.go' ) ;
727
727
const workDir = path . dirname ( filePath ) ;
728
- const vendorPkgsFullPath = [ 'test/testfixture/vendoring/vendor/example.com /vendorpls' ] ;
729
- const vendorPkgsRelativePath = [ 'example.com /vendorpls' ] ;
728
+ const vendorPkgsFullPath = [ 'test/testfixture/vendoring/vendor/example/vendorpls' ] ;
729
+ const vendorPkgsRelativePath = [ 'example/vendorpls' ] ;
730
730
731
731
const gopkgsPromise = getAllPackages ( workDir ) . then ( ( pkgMap ) => {
732
732
const pkgs = Array . from ( pkgMap . keys ( ) ) . filter ( ( p ) => {
@@ -785,7 +785,7 @@ It returns the number of bytes written and any write error encountered.
785
785
} // not working in module mode.
786
786
const vendorSupport = await isVendorSupported ( ) ;
787
787
const filePath = path . join ( fixturePath , 'baseTest' , 'test.go' ) ;
788
- const vendorPkgs = [ 'test/testfixture/vendoring/vendor/example.com /vendorpls' ] ;
788
+ const vendorPkgs = [ 'test/testfixture/vendoring/vendor/example/vendorpls' ] ;
789
789
790
790
const gopkgsPromise = new Promise < void > ( ( resolve , reject ) => {
791
791
const cmd = cp . spawn ( getBinPath ( 'gopkgs' ) , [ '-format' , '{{.ImportPath}}' ] , {
@@ -865,7 +865,7 @@ It returns the number of bytes written and any write error encountered.
865
865
configWithoutIgnoringFolders
866
866
) . then ( ( results ) => {
867
867
assert . equal ( results [ 0 ] . name , 'SomethingStrange' ) ;
868
- assert . equal ( results [ 0 ] . path , path . join ( workspacePath , 'vendor/example.com /vendorpls/lib.go' ) ) ;
868
+ assert . equal ( results [ 0 ] . path , path . join ( workspacePath , 'vendor/example/vendorpls/lib.go' ) ) ;
869
869
} ) ;
870
870
const withIgnoringFolders = getWorkspaceSymbols (
871
871
workspacePath ,
0 commit comments