Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.bio.base
Merge requests
!31
Fix failing tests after corrections to bob.bio.db
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix failing tests after corrections to bob.bio.db
fixed_tests
into
master
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Pavel KORSHUNOV
requested to merge
fixed_tests
into
master
8 years ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
Align with the package
bob.bio.db
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
cf12e92a
1 commit,
8 years ago
3 files
+
6
−
6
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
bob/bio/base/test/dummy/database.py
+
2
−
2
Options
@@ -16,8 +16,8 @@ class DummyDatabase(ZTBioDatabase):
@@ -16,8 +16,8 @@ class DummyDatabase(ZTBioDatabase):
)
)
self
.
__db
=
AtntBioDatabase
()
self
.
__db
=
AtntBioDatabase
()
def
model_ids
(
self
,
group
=
None
,
protocol
=
None
,
gender
=
None
):
def
model_ids
(
self
,
group
s
=
None
,
protocol
=
None
,
gender
=
None
):
return
self
.
__db
.
model_ids
(
group
,
protocol
,
gender
)
return
self
.
__db
.
model_ids
(
group
s
,
protocol
,
gender
)
def
objects
(
self
,
groups
=
None
,
protocol
=
None
,
purposes
=
None
,
model_ids
=
None
,
**
kwargs
):
def
objects
(
self
,
groups
=
None
,
protocol
=
None
,
purposes
=
None
,
model_ids
=
None
,
**
kwargs
):
return
self
.
__db
.
objects
(
groups
,
protocol
,
purposes
,
model_ids
,
**
kwargs
)
return
self
.
__db
.
objects
(
groups
,
protocol
,
purposes
,
model_ids
,
**
kwargs
)
Loading