-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jonathan-Casey <[email protected]> Signed-off-by: Matt Roberts <[email protected]>
- Loading branch information
1 parent
fb7e41d
commit 8cff2ac
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ describe('codegen', function () { | |
versionedModelManager.addCTOModel(cto, 'hr.cto'); | ||
|
||
const unversionedBaseCto = base_cto.replace('namespace [email protected]', 'namespace org.acme.hr.base'); | ||
const unversionedCto = cto.replace('namespace [email protected]', 'namespace org.acme.hr'); | ||
const unversionedCto = cto.replace('namespace [email protected]', 'namespace org.acme.hr').replace('import [email protected]', 'import org.acme.hr.base'); | ||
Check failure on line 47 in test/codegen/codegen.js GitHub Actions / Unit Tests (16.x, ubuntu-latest)
|
||
unversionedModelManager.addCTOModel(unversionedBaseCto, 'hr_base.cto'); | ||
unversionedModelManager.addCTOModel(unversionedCto, 'hr.cto'); | ||
}); | ||
|