summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorArman Uguray <armansito@chromium.org>2015-04-01 17:37:24 -0700
committerArman Uguray <armansito@chromium.org>2015-04-01 17:38:26 -0700
commitb7e71ee8eb1727bac90125a352d3d3f5849d74bf (patch)
tree72fc11003452eb0d43fe453787f3aa434c288094 /test
parent55ae8e29c0db882487bafa24cef58e0184cb95f1 (diff)
downloadbluez-b7e71ee8eb1727bac90125a352d3d3f5849d74bf.tar.gz
test/example-gatt-server: Align string constants
Aligned the string constants for better readability.
Diffstat (limited to 'test')
-rwxr-xr-xtest/example-gatt-server8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/example-gatt-server b/test/example-gatt-server
index 1fc1e464b..9e7d0f53c 100755
--- a/test/example-gatt-server
+++ b/test/example-gatt-server
@@ -14,12 +14,12 @@ mainloop = None
BLUEZ_SERVICE_NAME = 'org.bluez'
GATT_MANAGER_IFACE = 'org.bluez.GattManager1'
-DBUS_OM_IFACE = 'org.freedesktop.DBus.ObjectManager'
-DBUS_PROP_IFACE = 'org.freedesktop.DBus.Properties'
+DBUS_OM_IFACE = 'org.freedesktop.DBus.ObjectManager'
+DBUS_PROP_IFACE = 'org.freedesktop.DBus.Properties'
GATT_SERVICE_IFACE = 'org.bluez.GattService1'
-GATT_CHRC_IFACE = 'org.bluez.GattCharacteristic1'
-GATT_DESC_IFACE = 'org.bluez.GattDescriptor1'
+GATT_CHRC_IFACE = 'org.bluez.GattCharacteristic1'
+GATT_DESC_IFACE = 'org.bluez.GattDescriptor1'
class InvalidArgsException(dbus.exceptions.DBusException):
_dbus_error_name = 'org.freedesktop.DBus.Error.InvalidArgs'