Index: tests/sqs/test_connection.py |
diff --git a/boto/tests/test_sqsconnection.py b/tests/sqs/test_connection.py |
similarity index 97% |
rename from boto/tests/test_sqsconnection.py |
rename to tests/sqs/test_connection.py |
index dd0cfcc8fcd79a142d53c847c249f68ae99ec0a4..6996a54a3a71d518b8c36e8784aea1905d1c7b3b 100644 |
--- a/boto/tests/test_sqsconnection.py |
+++ b/tests/sqs/test_connection.py |
@@ -1,5 +1,3 @@ |
-#!/usr/bin/env python |
- |
# Copyright (c) 2006-2010 Mitch Garnaat http://garnaat.org/ |
# Copyright (c) 2010, Eucalyptus Systems, Inc. |
# All rights reserved. |
@@ -45,7 +43,8 @@ class SQSConnectionTest (unittest.TestCase): |
# try illegal name |
try: |
- queue = c.create_queue('bad_queue_name') |
+ queue = c.create_queue('bad*queue*name') |
+ self.fail('queue name should have been bad') |
except SQSError: |
pass |