Skip to content

Commit

Permalink
chore: constying (#6160)
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant authored Mar 21, 2021
1 parent 5c1140c commit 3330ff3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/operators/windowWhen-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('windowWhen', () => {
});
});

it('should emit windows using constying cold closings', () => {
it('should emit windows using varying cold closings', () => {
rxTestScheduler.run(({ hot, cold, expectObservable, expectSubscriptions }) => {
const closings = [
cold(' -----------------s--| '),
Expand Down Expand Up @@ -71,7 +71,7 @@ describe('windowWhen', () => {
});
});

it('should emit windows using constying hot closings', () => {
it('should emit windows using varying hot closings', () => {
rxTestScheduler.run(({ hot, cold, expectObservable, expectSubscriptions }) => {
const closings = [
hot(' -1--^----------------s-| '),
Expand Down Expand Up @@ -103,7 +103,7 @@ describe('windowWhen', () => {
});
});

it('should emit windows using constying empty delayed closings', () => {
it('should emit windows using varying empty delayed closings', () => {
rxTestScheduler.run(({ hot, cold, expectObservable, expectSubscriptions }) => {
const closings = [
cold(' -----------------| '),
Expand Down Expand Up @@ -135,7 +135,7 @@ describe('windowWhen', () => {
});
});

it('should emit windows using constying cold closings, outer unsubscribed early', () => {
it('should emit windows using varying cold closings, outer unsubscribed early', () => {
rxTestScheduler.run(({ hot, cold, expectObservable, expectSubscriptions }) => {
const closings = [
cold(' -----------------s--| '),
Expand Down

0 comments on commit 3330ff3

Please sign in to comment.