Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
CaosDB Julia Integration Tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
CaosDB Julia Integration Tests
Commits
c352b40c
Commit
c352b40c
authored
3 years ago
by
florian
Browse files
Options
Downloads
Patches
Plain Diff
FIX: Use correct transaction variable
parent
1f3ff733
No related branches found
No related tags found
1 merge request
!3
ENH: Test queries and entity retrieval
Pipeline
#12159
failed
3 years ago
Stage: info
Stage: code-style
Stage: setup
Stage: cert
Stage: test
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/runtests.jl
+3
-3
3 additions, 3 deletions
test/runtests.jl
with
3 additions
and
3 deletions
test/runtests.jl
+
3
−
3
View file @
c352b40c
...
@@ -99,10 +99,10 @@ end
...
@@ -99,10 +99,10 @@ end
# COUNT queries have to be conducted manually
# COUNT queries have to be conducted manually
count_transaction
=
create_transaction
()
count_transaction
=
create_transaction
()
add_query
(
transaction
,
"COUNT ENTITY WITH id=-1"
)
add_query
(
count_
transaction
,
"COUNT ENTITY WITH id=-1"
)
execute
(
transaction
)
execute
(
count_
transaction
)
# Still an empty result set
# Still an empty result set
@test
get_count_result
(
transaction
)
==
0
@test
get_count_result
(
count_
transaction
)
==
0
end
end
@testset
"Test entity retrieval"
begin
@testset
"Test entity retrieval"
begin
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment