Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alafaye committed Jul 2, 2015
1 parent f877d0a commit 9ab4261
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygsp/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_utils(self):
weight_check2 = {'has_inf_val': True, 'has_nan_value': True,
'is_not_square': True, 'diag_is_not_zero': False}
rep2 = {'lap': None, 'is_dir': True, 'weight_check': weight_check2,
'is_conn': True}
'is_conn': False}
t2 = {'G': G2, 'rep': rep2}

W3 = np.zeros((4, 4))
Expand All @@ -76,7 +76,7 @@ def test_utils(self):
weight_check4 = {'has_inf_val': False, 'has_nan_value': False,
'is_not_square': False, 'diag_is_not_zero': True}
rep4 = {'lap': lap4, 'is_dir': False, 'weight_check': weight_check4,
'is_conn': True, 'sym': sym4}
'is_conn': False, 'sym': sym4}
t4 = {'G': G4, 'rep': rep4}

test_graphs = [t1, t3, t4]
Expand Down

0 comments on commit 9ab4261

Please sign in to comment.