Revert system test changes:

* Revert "Shutdown rippled before http server in json rpc test to avoid http server potentially receiving messages due to automatic ledger close interval."
* Revert "Update ripple-lib integration tests"

This reverts commit 83442825e5.
This commit is contained in:
Vinnie Falco
2014-02-04 13:56:37 -08:00
parent 0afbda0351
commit d0970397a6
8 changed files with 639 additions and 1449 deletions

View File

@@ -50,10 +50,10 @@ function build_teardown() {
return function (done) {
var self = this;
teardown.call(self, function () {
self.server.close(function () {
done();
});
self.server.close(function () {
// console.log("server closed");
teardown.call(self, done);
});
};
};