Skip to content

Commit 66c055c

Browse files
fix test
1 parent db0df06 commit 66c055c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src_docs/_templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@ <h2> Examples </h2>
135135
<div class="three-cards">
136136
<div class="card h-100">
137137
<div class="card-body">
138-
<a href="{{ pathto("examples/Two_Moons") }}"><h4 class="card-title">Two Moons</h4></a>
138+
<a href="{{ pathto("examples/Two_moons") }}"><h4 class="card-title">Two Moons</h4></a>
139139
<p class="card-text">Here are some examples of domain adaptation methods applied on the Two Moons dataset.
140140
Please look at these examples to learn how to use the algorithms provided by the ADAPT package.
141141
</p>
142142
</div>
143143

144144
<div class="image">
145-
<a href="{{ pathto("examples/Two_Moons") }}">
145+
<a href="{{ pathto("examples/Two_moons") }}">
146146
<img src="_static/images/two_moons_setup.png" class="sk-index-img" alt="Two Moons">
147147
</a>
148148
</div>
149-
<a class="btn btn-below" role="button" href="{{ pathto("examples/Two_Moons") }}">See examples</a>
149+
<a class="btn btn-below" role="button" href="{{ pathto("examples/Two_moons") }}">See examples</a>
150150
</div>
151151
</div>
152152

tests/test_coral.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_fit_coral_complex():
7373
model.fit(Xs_, ys[:10], Xt_)
7474
assert np.iscomplexobj(linalg.inv(linalg.sqrtm(model.Cs_)))
7575
assert np.iscomplexobj(linalg.sqrtm(model.Ct_))
76-
model.predict(Xs_)
76+
model.predict(Xs_, domain="src")
7777

7878

7979
def test_fit_deepcoral():

0 commit comments

Comments
 (0)