@dhyasama/totem-models 7.57.0 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -96,7 +96,7 @@ describe('Investments', function() {
96
96
 
97
97
  });
98
98
 
99
- it.skip('removes investment reference from round when deleted', function(done) {
99
+ it('removes investment reference from round when deleted', function(done) {
100
100
 
101
101
  var inv1 = new Investment({
102
102
  customer: customerid,
@@ -137,8 +137,7 @@ describe('Investments', function() {
137
137
 
138
138
  should.not.exist(err);
139
139
  should.exist(toot);
140
-
141
- toot.vehicles[0].investments.length.should.equal(0);
140
+ toot.vehicles.length.should.equal(0);
142
141
 
143
142
  done();
144
143