Skip to content

Commit 3f0e5fe

Browse files
committed
Deleted test_create_application
1 parent 0486ba4 commit 3f0e5fe

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

fplus-database/src/lib.rs

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -232,27 +232,4 @@ mod tests {
232232

233233
}
234234

235-
/**
236-
* Test the create_application function
237-
*
238-
* # Returns
239-
* @return () - The result of the test
240-
*/
241-
#[tokio::test]
242-
#[serial]
243-
async fn test_create_application() {
244-
setup_test_environment().await;
245-
246-
let id = "test_id".to_string();
247-
let owner = "keyko-io".to_string();
248-
let repo = "great-test-library".to_string();
249-
let pr_number = 14;
250-
let app_file = "test_app_file".to_string();
251-
let sha = "test_sha".to_string();
252-
let path = "test_path".to_string();
253-
254-
let result = database::applications::create_application(id, owner, repo, pr_number, app_file, sha, path).await;
255-
assert!(result.is_ok());
256-
}
257-
258235
}

0 commit comments

Comments
 (0)