Skip to content

Commit

Permalink
Fix messages for missing cvxpy solver
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiocallegari committed Jun 3, 2015
1 parent e3e9a8d commit 980169c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pydsm/NTFdesign/tests/test_NTFdesign_minmax.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_LP8_cvxpy(self):
try:
import cvxpy # analysis:ignore
except:
raise SkipTest("Modeler 'picos' not installed")
raise SkipTest("Modeler 'cvxpy' not installed")
z, p, k = ntf_fir_minmax(order=8, show_progress=False,
modeler='cvxpy')
e_k = 1
Expand All @@ -188,7 +188,7 @@ def test_BP8_cvxpy(self):
try:
import cvxpy # analysis:ignore
except:
raise SkipTest("Modeler 'picos' not installed")
raise SkipTest("Modeler 'cvxpy' not installed")
z, p, k = ntf_fir_minmax(order=8, osr=32, f0=0.2, show_progress=False,
modeler='cvxpy')
e_k = 1
Expand All @@ -210,7 +210,7 @@ def test_MB16_cvxpy(self):
try:
import cvxpy # analysis:ignore
except:
raise SkipTest("Modeler 'picos' not installed")
raise SkipTest("Modeler 'cvxpy' not installed")
z, p, k = ntf_fir_minmax(order=8, osr=64, f0=[0.1, 0.2],
show_progress=False,
modeler='cvxpy')
Expand Down

0 comments on commit 980169c

Please sign in to comment.