Skip to content

Commit

Permalink
redo: post.id back to post.ID
Browse files Browse the repository at this point in the history
  • Loading branch information
devahmedshendy committed Jan 22, 2024
1 parent 5eb28b8 commit 0d18e19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/SyndiKitTests/WordpressTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ final class WordpressTests: XCTestCase {
XCTAssertEqual(post.parentID, wpPostParent)
XCTAssertEqual(post.menuOrder, wpMenuOrder)
XCTAssertEqual(post.isSticky, wpIsSticky != 0)
XCTAssertEqual(post.id, wpPostID)
XCTAssertEqual(post.ID, wpPostID)
XCTAssertEqual(post.postDate, wpPostDate)
XCTAssertEqual(post.modifiedDate, wpModifiedDate)
XCTAssertEqual(post.name, wpPostName)
Expand Down Expand Up @@ -229,7 +229,7 @@ final class WordpressTests: XCTestCase {
XCTAssertEqual(post.parentID, wpPostParent)
XCTAssertEqual(post.menuOrder, wpMenuOrder)
XCTAssertEqual(post.isSticky, wpIsSticky != 0)
XCTAssertEqual(post.id, wpPostID)
XCTAssertEqual(post.ID, wpPostID)
XCTAssertEqual(post.postDate, wpPostDate)
XCTAssertEqual(post.modifiedDate, wpModifiedDate)
XCTAssertEqual(post.name, wpPostName)
Expand Down Expand Up @@ -312,7 +312,7 @@ final class WordpressTests: XCTestCase {
XCTAssertEqual(post.parentID, wpPostParent)
XCTAssertEqual(post.menuOrder, wpMenuOrder)
XCTAssertEqual(post.isSticky, wpIsSticky != 0)
XCTAssertEqual(post.id, wpPostID)
XCTAssertEqual(post.ID, wpPostID)
XCTAssertEqual(post.postDate, wpPostDate)
XCTAssertEqual(post.modifiedDate, wpModifiedDate)
XCTAssertEqual(post.name, wpPostName)
Expand Down

0 comments on commit 0d18e19

Please sign in to comment.