Skip to content

Commit f322408

Browse files
author
rolsen
committed
ljswitchboard-package_loader: Fixing duplicate test keys in bad_zip_test.js.
1 parent ccb5ed7 commit f322408

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

ljswitchboard-package_loader/test/bad_zips_test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ var tests = {
5555
package_loader.deleteAllManagedPackages();
5656
callback();
5757
},
58-
'configure the extraction path (2)': function(test) {
58+
'configure the extraction path (first time)': function(test) {
5959
directory = path.join(process.cwd(), localFolder);
60-
60+
6161
cleanExtractionPath(test, directory);
6262

6363
package_loader.setExtractionPath(directory);
6464
test.done();
6565
},
66-
'start extraction (corrupted .zip)': function(test){
66+
'start extraction (corrupted .zip, first time)': function(test){
6767
// Clear the fired-events list
6868
capturedEvents = [];
6969

@@ -104,15 +104,15 @@ var tests = {
104104
test.done();
105105
});
106106
},
107-
'configure the extraction path (2)': function(test) {
107+
'configure the extraction path (second time)': function(test) {
108108
directory = path.join(process.cwd(), localFolder);
109109

110110
cleanExtractionPath(test, directory);
111111

112112
package_loader.setExtractionPath(directory);
113113
test.done();
114114
},
115-
'start extraction (corrupted .zip)': function(test){
115+
'start extraction (corrupted .zip, second time)': function(test){
116116
// Clear the fired-events list
117117
capturedEvents = [];
118118

0 commit comments

Comments
 (0)