We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dc7255 commit 37a2aa8Copy full SHA for 37a2aa8
tests/conftest.py
@@ -2,11 +2,11 @@
2
import json
3
import random
4
from flasgger import Swagger
5
-from sintel.core import MTV
+from sintel.core import Sintel
6
from sintel.utils import read_config
7
8
9
-TEST_DB = 'mtv-test'
+TEST_DB = 'sintel-test'
10
TEST_HOST = "localhost"
11
TEST_PORT = 27017
12
@@ -17,11 +17,11 @@ def app():
17
Set up Flask App in testing environment
18
"""
19
20
- config = read_config('./mtv/config.yml')
+ config = read_config('./sintel/config.yml')
21
config['db'] = TEST_DB
22
config['host'] = TEST_HOST
23
config['port'] = TEST_PORT
24
- explorer = MTV(config)
+ explorer = Sintel(config)
25
26
app = explorer._init_flask_app('test')
27
tests/test_swag.py
0 commit comments