Skip to content

Commit

Permalink
#1258 all tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-flores committed Jul 29, 2024
1 parent f967daa commit f98b83d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
"swagger-autogen": "node src/swagger.js",
"test": "NODE_ENV=test mocha --recursive --exit || true",
"test:integration": "NODE_ENV=test node-dev src/scripts/populate.js y; NODE_ENV=test mocha test/integration-tests --recursive --exit",
"test:put-org": "NODE_ENV=test node-dev src/scripts/populate.js y; NODE_ENV=test mocha test/integration-tests/org/putOrgTest.js --recursive --exit",
"test:unit-tests": "NODE_ENV=test mocha test/unit-tests --recursive --exit || true",
"test:coverage": "NODE_ENV=test nyc --reporter=text mocha src/* --recursive --exit || true",
"test:coverage-html": "NODE_ENV=test nyc --reporter=html mocha src/* --recursive --exit || true",
Expand Down
3 changes: 0 additions & 3 deletions src/controller/org.controller/org.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,6 @@ async function updateOrg (req, res, next) {
const org = await orgRepo.findOneByShortName(shortName)
const orgMakingChanges = req.ctx.org
let agt = setAggregateOrgObj({ short_name: shortName })

logger.info({uuid: req.ctx.uuid, message: 'UPDATING AN ORG'})


Check failure on line 334 in src/controller/org.controller/org.controller.js

View workflow job for this annotation

GitHub Actions / lint-src (16.x)

Trailing spaces not allowed
// org doesn't exist
if (!org) {
Expand Down

0 comments on commit f98b83d

Please sign in to comment.