Commit Graph

7 Commits

Author SHA1 Message Date
Luiz Augusto von Dentz
55192ae2c4 test/simple-endpoint: Fix ClearConfiguration signature 2016-05-30 12:57:11 +03:00
Petri Gynther
7adf8d09b4 test: Python import cleanup
Some test scripts use "from gi.repository import GObject" whereas others
use "import gobject". gi.repository is not always available on embedded
systems, so convert all instances to this format:

try:
  from gi.repository import GObject
except ImportError:
  import gobject as GObject

Also, sort the imports in this order: system, dbus, gobject, bluezutils
2014-01-18 00:38:39 -08:00
Vinicius Costa Gomes
375e766245 audio: Fix interface names
In some places, the old names of the interfaces were still being used.
So we update them to use the new names.
2012-12-06 12:23:25 +02:00
Mikel Astiz
90e7850d95 test: Avoid using DefaultAdapter()
Call the utility library -which uses ObjectManager API- to avoid using
Manager.FindAdapter() and Manager.DefaultAdapter().
2012-12-05 16:39:34 +02:00
Vinicius Costa Gomes
803bff258b test: Add a HFP HF endpoint to simple-endpoint 2012-12-04 07:56:12 +02:00
Steve Langasek
ee56337e41 Update tests to be compatible with gi and python3
This patch makes the python tests source-compatible with python 3, while
leaving the interpreter at python 2 for now.

The tradeoff is that this source is no longer compatible with python
versions < 2.6, and requires gobject-introspection for the glib-based
tests.
2012-06-15 12:32:50 +03:00
Luiz Augusto von Dentz
7bc7ee26c1 Add simple-endpoint test script 2010-09-15 15:05:44 +03:00