Fixing broken unit test
diff --git a/test/unit/base_operation.test.js b/test/unit/base_operation.test.js
index 0ff8e09..babd241 100644
--- a/test/unit/base_operation.test.js
+++ b/test/unit/base_operation.test.js
@@ -9,7 +9,7 @@
   t.throws(() => base_operation.handle_errors({statusCode: 403}), /authentication failed/)
   t.throws(() => base_operation.handle_errors({statusCode: 404}), /HTTP 404/)
   t.throws(() => base_operation.handle_errors({statusCode: 408}), /timed out/)
-  t.throws(() => base_operation.handle_errors({statusCode: 409}), /action already exists/i)
+  t.throws(() => base_operation.handle_errors({statusCode: 409}), /Resource already exists/i)
   t.throws(() => base_operation.handle_errors({statusCode: 500, error: {}}), /API call failed/)
   t.throws(() => base_operation.handle_errors({statusCode: 500, error: {response: {result: {error: 'custom'}}}}), /custom/)
 })