Skip to content

Commit 94a27c9

Browse files
committed
fix
2 parents 21f7d6e + 288041e commit 94a27c9

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

test/network_analysis/crn_theory.jl

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,24 +68,17 @@ let
6868
rates_invalid = reshape(rate_vals, 1, 8)
6969

7070
# Tests that all input types generates the correct rate matrix.
71-
<<<<<<< HEAD
7271
@test Catalyst.adjacencymat(rn, rates_vec) == rate_mat
7372
@test Catalyst.adjacencymat(rn, rates_tup) == rate_mat
7473
@test Catalyst.adjacencymat(rn, rates_dict) == rate_mat
7574
@test_throws Exception Catalyst.adjacencymat(rn, rate_vals)
76-
=======
77-
Catalyst.ratematrix(rn, rate_vals) == rate_mat
78-
Catalyst.ratematrix(rn, rates_vec) == rate_mat
79-
Catalyst.ratematrix(rn, rates_tup) == rate_mat
80-
Catalyst.ratematrix(rn, rates_dict) == rate_mat
8175

8276
# Tests that throws error in rate matrix.
8377
incorrect_param_dict = Dict(:k1 => 1.0)
8478

85-
@test_throws ErrorException Catalyst.ratematrix(rn, 123)
86-
@test_throws ErrorException Catalyst.ratematrix(rn, incorrect_param_dict)
79+
@test_throws ErrorException Catalyst.adjacencymat(rn, 123)
80+
@test_throws ErrorException Catalyst.adjacencymat(rn, incorrect_param_dict)
8781

88-
>>>>>>> a309a9e81f964703653d00de2918e77c40f6ba6a
8982
@test_throws Exception Catalyst.iscomplexbalanced(rn, rates_invalid)
9083

9184
# Test sparse matrix

0 commit comments

Comments
 (0)