Gentoo Archives: gentoo-commits

From: Vikraman Choudhury <vikraman.choudhury@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoostats:master commit in: server/tests/
Date: Thu, 30 Jun 2011 15:47:08
Message-Id: 64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a.vikraman@gentoo
1 commit: 64a9ddde92b5140215fe72ff1b28c2daa5b5bd6a
2 Author: Vikraman Choudhury <vikraman.choudhury <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 30 15:46:05 2011 +0000
4 Commit: Vikraman Choudhury <vikraman.choudhury <AT> gmail <DOT> com>
5 CommitDate: Thu Jun 30 15:46:05 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoostats.git;a=commit;h=64a9ddde
7
8 update module name to app in tests
9
10 ---
11 server/tests/test_host.py | 2 +-
12 server/tests/test_index.py | 2 +-
13 2 files changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/server/tests/test_host.py b/server/tests/test_host.py
16 index b5b6ebe..68a6732 100644
17 --- a/server/tests/test_host.py
18 +++ b/server/tests/test_host.py
19 @@ -2,7 +2,7 @@
20 import uuid
21 import json
22 import unittest
23 -from main import app
24 +from app import app
25
26 class TestHost(unittest.TestCase):
27
28
29 diff --git a/server/tests/test_index.py b/server/tests/test_index.py
30 index 63614ab..45de92b 100644
31 --- a/server/tests/test_index.py
32 +++ b/server/tests/test_index.py
33 @@ -1,6 +1,6 @@
34
35 import unittest
36 -from main import app
37 +from app import app
38
39 class TestIndex(unittest.TestCase):