Remove context dependency from Connection

This commit is contained in:
John Firebaugh
2013-04-17 17:32:13 -07:00
parent a0edf68cbf
commit a63e17ef15
4 changed files with 24 additions and 19 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
describe('iD.Connection', function () {
var c, context;
var c;
beforeEach(function () {
context = iD();
c = new iD.Connection(context, {});
c = new iD.Connection({});
});
it('is instantiated', function () {