Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Compare revisions
d37f2a41b3be8a66a7f897af96d18332f709d9ab to 9ef2ae46099b375ff9d5e8f6ab5d73984b32bf69
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
it-bott-integrasjoner/greg
Select target project
No results found
9ef2ae46099b375ff9d5e8f6ab5d73984b32bf69
Select Git revision
Swap
Target
it-bott-integrasjoner/greg
Select target project
andretol/greg
1 result
d37f2a41b3be8a66a7f897af96d18332f709d9ab
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gregui/tests/conftest.py
+3
-3
3 additions, 3 deletions
gregui/tests/conftest.py
with
3 additions
and
3 deletions
gregui/tests/conftest.py
View file @
9ef2ae46
...
...
@@ -367,7 +367,7 @@ def create_person() -> Callable[
@pytest.fixture
def
person_foo_data
()
->
dict
:
return
dict
(
first_name
=
"
Foo
"
,
first_name
=
"
Foo
م
"
,
last_name
=
"
Bar
"
,
email
=
"
foo@bar.com
"
,
feide_id
=
"
bar@baz.org
"
,
...
...
@@ -378,7 +378,7 @@ def person_foo_data() -> dict:
@pytest.fixture
def
person_foo
(
create_person
)
->
Person
:
person
=
create_person
(
first_name
=
"
Foo
"
,
first_name
=
"
Foo
م
"
,
last_name
=
"
Bar
"
,
email
=
"
foo@bar.com
"
,
feide_id
=
"
bar@baz.org
"
,
...
...
@@ -390,7 +390,7 @@ def person_foo(create_person) -> Person:
@pytest.fixture
def
person_invited
(
create_person
)
->
Person
:
"""
Invited person before registration.
"""
person
=
create_person
(
first_name
=
"
Foo
"
,
last_name
=
"
Bar
"
,
email
=
"
foo@example.org
"
)
person
=
create_person
(
first_name
=
"
Foo
"
,
last_name
=
"
Ba
م
r
"
,
email
=
"
foo@example.org
"
)
return
Person
.
objects
.
get
(
id
=
person
.
id
)
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
Next