Ensure we never go below 256mb memoryLimit

This commit is contained in:
Johannes Zellner
2016-02-05 15:51:01 +01:00
parent 1b7265f866
commit 19cbd1f394
2 changed files with 2 additions and 1 deletions

View File

@@ -126,6 +126,7 @@ describe('Apps', function () {
expect(app).to.be.ok();
expect(app.iconUrl).to.be(null);
expect(app.fqdn).to.eql(APP_0.location + '-' + config.fqdn());
expect(app.memoryLimit).to.eql(0);
done();
});
});