~mvo/software-center/qml

« back to all changes in this revision

Viewing changes to test/disabled_test_gnomekeyring.py

  • Committer: Michael Vogt
  • Date: 2011-10-05 13:08:09 UTC
  • mfrom: (1887.1.603 software-center)
  • Revision ID: michael.vogt@ubuntu.com-20111005130809-0tin9nr00f0uw65b
mergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
 
import glib
 
3
from gi.repository import GObject
4
4
import gnomekeyring as gk
5
5
import unittest
6
6
 
10
10
    KEYRING_NAME = "gk-test-keyring"
11
11
 
12
12
    def setUp(self):
13
 
        glib.set_application_name(self.APP)
 
13
        GObject.set_application_name(self.APP)
14
14
 
15
15
    def test_keyring_available(self):
16
16
        available = gk.is_available()