Skip to content

Commit 37a2aa8

Browse files
committed
fix coverage issues
1 parent 9dc7255 commit 37a2aa8

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

tests/conftest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
import json
33
import random
44
from flasgger import Swagger
5-
from sintel.core import MTV
5+
from sintel.core import Sintel
66
from sintel.utils import read_config
77

88

9-
TEST_DB = 'mtv-test'
9+
TEST_DB = 'sintel-test'
1010
TEST_HOST = "localhost"
1111
TEST_PORT = 27017
1212

@@ -17,11 +17,11 @@ def app():
1717
Set up Flask App in testing environment
1818
"""
1919

20-
config = read_config('./mtv/config.yml')
20+
config = read_config('./sintel/config.yml')
2121
config['db'] = TEST_DB
2222
config['host'] = TEST_HOST
2323
config['port'] = TEST_PORT
24-
explorer = MTV(config)
24+
explorer = Sintel(config)
2525

2626
app = explorer._init_flask_app('test')
2727

tests/test_swag.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)