Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
7606448a
Unverified
Commit
7606448a
authored
May 04, 2023
by
Jérémie Bresson
Committed by
GitHub
May 04, 2023
Browse files
Fix CI by changing an expectation in testExportDownloadAndImport (#970)
parent
ddd4304b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/org/gitlab4j/api/TestImportExportApi.java
View file @
7606448a
...
...
@@ -138,7 +138,7 @@ public class TestImportExportApi extends AbstractIntegrationTest {
System
.
out
.
println
(
"Downloading exported project"
);
exportDownload
=
gitLabApi
.
getImportExportApi
().
downloadExport
(
testProject
,
null
);
assertNotNull
(
exportDownload
);
assertTrue
(
exportDownload
.
length
()
>
1
000
0
);
assertTrue
(
exportDownload
.
length
()
>
2
000
,
"length is not as expected. Current value: "
+
exportDownload
.
length
()
);
ImportStatus
importStatus
=
gitLabApi
.
getImportExportApi
().
startImport
(
null
,
exportDownload
,
TEST_IMPORT_PROJECT_NAME
,
true
,
null
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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