Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
213
Issues
213
List
Boards
Labels
Service Desk
Milestones
Merge Requests
35
Merge Requests
35
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
85264176
Commit
85264176
authored
1 hour ago
by
Ben Hayward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated test title
parent
6647d0a5
fix/onchain-limit-1924
1 merge request
!331
[Sprint/NuancedNumbat](fix): Allowing onchain boosts when offchain limit reached #1924
Pipeline
#82789735
passed with stages
in 10 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ManagerSpec.php
Spec/Core/Boost/Network/ManagerSpec.php
+2
-2
No files found.
Spec/Core/Boost/Network/ManagerSpec.php
View file @
85264176
...
...
@@ -370,7 +370,7 @@ class ManagerSpec extends ObjectBehavior
$this
->
isBoostLimitExceededBy
(
$boost
)
->
shouldReturn
(
true
);
}
public
function
it_should_allow_a_user_to_boost_onchain
(
Boost
$boost
)
public
function
it_should_allow_a_user_to_boost_onchain
_when_offchain_limit_reached
(
Boost
$boost
)
{
$boostArray
=
[];
for
(
$i
=
0
;
$i
<
2
;
$i
++
)
{
...
...
@@ -384,7 +384,7 @@ class ManagerSpec extends ObjectBehavior
->
shouldBeCalled
()
->
willReturn
(
true
);
Di
::
_
()
->
get
(
'Config'
)
->
set
(
'max_daily_boost_views'
,
1
0000
);
Di
::
_
()
->
get
(
'Config'
)
->
set
(
'max_daily_boost_views'
,
2
0000
);
$this
->
isBoostLimitExceededBy
(
$boost
)
->
shouldReturn
(
false
);
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment