This is an automated email from the ASF dual-hosted git repository. brodybits pushed a commit to branch brodybits-uwp-only-wip0030 in repository https://gitbox.apache.org/repos/asf/cordova-windows.git
commit 3c6a5bde44fe6be4b491fc3629dfb580d13d4705 Author: Christopher J. Brody <[email protected]> AuthorDate: Sun Dec 22 13:05:45 2019 -0500 test prep: fix descriptions of tests that are not for 8.1 Co-authored-by: Jan Piotrowski <[email protected]> Co-authored-by: Christopher J. Brody <[email protected]> --- spec/unit/package.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/unit/package.spec.js b/spec/unit/package.spec.js index 8bf4474..c4d317e 100644 --- a/spec/unit/package.spec.js +++ b/spec/unit/package.spec.js @@ -102,7 +102,7 @@ describe('getPackageFileInfo method', function () { expect(pkgInfo.buildtype).toBe('debug'); }); - it('spec.7 should get file info correctly for windows 8.1 anycpu debug package', function () { + it('spec.7 should get file info correctly for windows anycpu debug package', function () { var packageFile = path.join(pkgPath, 'CordovaApp.Windows_0.0.1.0_anycpu_debug_Test', 'CordovaApp.Windows_0.0.1.0_anycpu_debug.appx'); var pkgInfo = pkg.getPackageFileInfo(packageFile); @@ -111,7 +111,7 @@ describe('getPackageFileInfo method', function () { expect(pkgInfo.buildtype).toBe('debug'); }); - it('spec.8 should get file info correctly for windows 8.1 x64 release package', function () { + it('spec.8 should get file info correctly for windows x64 release package', function () { var packageFile = path.join(pkgPath, 'CordovaApp.Windows_0.0.1.0_x64_Test', 'CordovaApp.Windows_0.0.1.0_x64.appx'); var pkgInfo = pkg.getPackageFileInfo(packageFile); @@ -120,7 +120,7 @@ describe('getPackageFileInfo method', function () { expect(pkgInfo.buildtype).toBe('release'); }); - it('spec.9 should get file info correctly for windows 8.1 x86 release package', function () { + it('spec.9 should get file info correctly for windows x86 release package', function () { var packageFile = path.join(pkgPath, 'CordovaApp.Windows_0.0.1.0_x86_Test', 'CordovaApp.Windows_0.0.1.0_x86.appx'); var pkgInfo = pkg.getPackageFileInfo(packageFile); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
