Skip to content

Commit

Permalink
Small refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
NavidMitchell committed Jan 29, 2025
1 parent dc26683 commit ee5dd73
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ otelAnnotationsVersion=2.11.0
lombokPluginVersion=8.10
nettyVersion=4.1.116.Final
luceneVersion=8.11.4
springBootVersion=3.4.1
springBootVersion=3.4.2
springDependencyManagementVersion=1.1.7
swaggerCoreVersion=2.2.27
testContainersVersion=1.20.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
initContinuumClient,
shutdownContinuumClient,
logFailure, findAndVerifyPeopleWithOffsetPaging
} from './TestHelpers.js'
import {Person} from './domain/Person.js'
} from '../TestHelpers.js'
import {Person} from '../domain/Person.js'
import {Page, Pageable, Order, Direction} from '@kinotic/continuum-client'
import {IEntityService, Structures, Structure} from '@kinotic/structures-api'
import delay from 'delay'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import {PageableC3Type, PageC3Type, IEntityService, Structures, Structure, Query
import {
createPersonStructureIfNotExist,
createTestPeopleAndVerify,
deleteStructure,
generateRandomString,
initContinuumClient,
shutdownContinuumClient,
} from './TestHelpers.js'
import {Person} from './domain/Person.js'
} from '../TestHelpers.js'
import {Person} from '../domain/Person.js'
import {Page, Pageable} from '@kinotic/continuum-client'

Object.assign(global, { WebSocket})
Expand Down Expand Up @@ -37,7 +38,7 @@ describe('NamedQueryTest', () => {
})

afterEach<LocalTestContext>(async (context) => {
// await expect(deleteStructure(context.structure.id)).resolves.toBeUndefined()
await expect(deleteStructure(context.structure.id)).resolves.toBeUndefined()
})


Expand Down

0 comments on commit ee5dd73

Please sign in to comment.