Fix missing documentation for new API entities.
authorMattias Michaux <mattias.michaux@gmail.com>
Mon, 16 May 2016 19:11:29 +0000 (21:11 +0200)
committerMattias Michaux <mattias.michaux@gmail.com>
Mon, 16 May 2016 19:11:29 +0000 (21:11 +0200)
tests/phpunit/CiviTest/CiviUnitTestCase.php

index a74bca2c973cf464e645a674f3582e20d402c921..ca9dbcf6e5c75081672d2a0e6e184368429906e5 100644 (file)
@@ -2270,8 +2270,8 @@ class CiviUnitTestCase extends PHPUnit_Extensions_Database_TestCase {
 
     global $civicrm_root;
     if (file_exists($civicrm_root . '/tests/templates/documentFunction.tpl')) {
-      if (!is_dir($civicrm_root . '/api/v3/examples/$entity')) {
-        mkdir($civicrm_root . '/api/v3/examples/$entity');
+      if (!is_dir($civicrm_root . "/api/v3/examples/$entity")) {
+        mkdir($civicrm_root . "/api/v3/examples/$entity");
       }
       $f = fopen($civicrm_root . "/api/v3/examples/$entity/$exampleName.php", "w+b");
       fwrite($f, $smarty->fetch($civicrm_root . '/tests/templates/documentFunction.tpl'));