Skip to content

Commit

Permalink
Deploy preview for PR 19 🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjrw committed Oct 9, 2024
1 parent 3af38d1 commit 2e0385a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pr-preview/pr-19/scp-head/controller-v0.html
Original file line number Diff line number Diff line change
Expand Up @@ -450,15 +450,15 @@

const possibleAssertionStates = [];
// Do channel B first, it's the default i.e. most likely to increment
nextAssertion = assertionChannels["B"].expectedNextAssertion;
let nextAssertion = assertionChannels["B"].expectedNextAssertion;
if (nextAssertion != null) {
possibleAssertionStates.push([
assertionChannels["A"].activeAssertion,
nextAssertion,
assertionChannels["C"].activeAssertion,
]);
}
let nextAssertion = assertionChannels["A"].expectedNextAssertion;
nextAssertion = assertionChannels["A"].expectedNextAssertion;
if (nextAssertion != null) {
possibleAssertionStates.push([
nextAssertion,
Expand Down

0 comments on commit 2e0385a

Please sign in to comment.