Skip to content

Commit 4c10cc6

Browse files
committed
Small test fixes
1 parent 519633e commit 4c10cc6

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

test/apply_Ht_to_b_test.jl

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
end
77

88
@testset "Testset 2" begin
9-
Ht = [
10-
1.0 0.0 0.0;
9+
Ht =[1.0 0.0 0.0;
1110
0.0 0.0 1.0;
12-
0.0 1.0 0.0
13-
]
11+
0.0 1.0 0.0]
12+
1413
b = [4.0, 5.0, 6.0]
1514

1615
@test apply_Ht_to_b(Ht, b) == [4.0, 6.0, 5.0]
@@ -19,10 +18,9 @@ end
1918
@testset "Testset 3" begin
2019
c, s = 3/5, 4/5
2120

22-
Ht = [
23-
c s;
24-
-s c
25-
]
21+
Ht =[c s;
22+
-s c]
23+
2624
b = [5.0, 0.0]
2725

2826
@test apply_Ht_to_b(Ht, b) [3.0, -4.0]

0 commit comments

Comments
 (0)