Skip to content

Commit a9adb14

Browse files
committed
FIX merge error
1 parent ef11432 commit a9adb14

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

openml/testing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ def setUp(self):
4242
self.cached = True
4343
# amueller's read/write key that he will throw away later
4444
openml.config.apikey = "610344db6388d9ba34f6db45a3cf71de"
45-
openml.config.server = "https://test.openml.org/api/v1/xml"
45+
self.production_server = "http://www.openml.org/api/v1/xml"
46+
self.test_server = "https://test.openml.org/api/v1/xml"
47+
openml.config.server = self.test_server
4648
openml.config.set_cache_directory(self.workdir, self.workdir)
4749

4850
def tearDown(self):

0 commit comments

Comments
 (0)