~gary-lasker/software-center/pyflakes-fixes

« back to all changes in this revision

Viewing changes to test/test_utils.py

  • Committer: Michael Vogt
  • Date: 2011-05-18 08:26:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1789.
  • Revision ID: michael.vogt@ubuntu.com-20110518082604-00wiq50tjd9vedz6
tests/: make pyflakes clean, fixup test_build_from_software_center_agent()

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
 
3
import os
3
4
import sys
4
5
import unittest
5
6
sys.path.insert(0,"../")
6
7
 
7
 
from softwarecenter.utils import *
 
8
from softwarecenter.utils import (decode_xml_char_reference,
 
9
                                  release_filename_in_lists_from_deb_line,
 
10
                                  get_language,
 
11
                                  get_http_proxy_string_from_libproxy,
 
12
                                  )
8
13
 
9
14
class TestSCUtils(unittest.TestCase):
10
15
    """ tests the sc utils """