Skip to content

Commit

Permalink
Fix trafo specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Barnada committed Jan 4, 2017
1 parent 602f6e9 commit 425a764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/trafos_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@
cini = self.trafo.cini
expect(cini[6]).to(equal('E'))
with context('si la potencia 20<=S<25 MVA'):
with it('must be E'):
with it('must be F'):
for v in range(20, 25):
self.trafo.potencia = v
cini = self.trafo.cini
expect(cini[6]).to(equal('F'))
with context('si la potencia 25<=S<30 MVA'):
with it('must be E'):
with it('must be G'):
for v in range(25, 30):
self.trafo.potencia = v
cini = self.trafo.cini
Expand Down

0 comments on commit 425a764

Please sign in to comment.