Skip to content

Commit

Permalink
Fix e2e test to run with fabric-ca docker
Browse files Browse the repository at this point in the history
FAB-1952
The fabric-ca docker image uses a server-config.json that has only
one user "admin". e2e test must use that user to pass the FIT
tests.

Change-Id: Ibe21f788616128a9da696190ade54d8a05ab801e
Signed-off-by: Jim Zhang <[email protected]>
  • Loading branch information
jimthematrix committed Jan 31, 2017
1 parent 0de9357 commit 450f6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ function readFile(path) {
}

module.exports.getSubmitter = function(client, test, loadFromConfig) {
return getSubmitter('admin2', 'adminpw2', client, test, loadFromConfig);
return getSubmitter('admin', 'adminpw', client, test, loadFromConfig);
};

0 comments on commit 450f6da

Please sign in to comment.