diff options
author | Lei Zhang <thestig@chromium.org> | 2015-07-15 17:10:52 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-07-15 17:10:52 -0700 |
commit | 281d1d293dab54cadd214e5a1c098583fbbe0788 (patch) | |
tree | cd9db13d20a4b46e40cdc3f3080b39559914ac3d /testing | |
parent | 5b4f57cdc0a279bd9b8e03b8f5714b9d39e642a8 (diff) | |
download | pdfium-281d1d293dab54cadd214e5a1c098583fbbe0788.tar.xz |
Flip the shut down order in tests.
This matches the Chromium PDF plugin changes in
https://codereview.chromium.org/1230313006/
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1237233006 .
Diffstat (limited to 'testing')
-rw-r--r-- | testing/embedder_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp index 02d0fae789..447b4d12e4 100644 --- a/testing/embedder_test.cpp +++ b/testing/embedder_test.cpp @@ -170,8 +170,8 @@ void EmbedderTest::SetUp() { void EmbedderTest::TearDown() { if (document_) { FORM_DoDocumentAAction(form_handle_, FPDFDOC_AACTION_WC); - FPDF_CloseDocument(document_); FPDFDOC_ExitFormFillEnvironment(form_handle_); + FPDF_CloseDocument(document_); } FPDFAvail_Destroy(avail_); FPDF_DestroyLibrary(); |