Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jianhuang01 committed Jun 7, 2019
1 parent 313c6ac commit 3e2cfed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/modules/core/effects/post-process-effect.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ test('PostProcessEffect#render', t => {
const outputBuffer = new Framebuffer(gl);

const params1 = effect.render({inputBuffer, outputBuffer});
t.ok(params1, 'post-processing effect rendered well');
t.ok(params1, 'post-processing effect rendered without throwing');
t.deepEqual(
params1,
{inputBuffer: outputBuffer, outputBuffer: inputBuffer},
Expand All @@ -54,7 +54,7 @@ test('PostProcessEffect#render', t => {
outputBuffer,
target: Framebuffer.getDefaultFramebuffer(gl)
});
t.ok(params2, 'post-processing effect rendered well');
t.ok(params2, 'post-processing effect rendered without throwing');
t.deepEqual(
params2,
{inputBuffer: outputBuffer, outputBuffer: inputBuffer},
Expand Down

0 comments on commit 3e2cfed

Please sign in to comment.